c# - What are the breaking changes migrating NEST from 1.7 to 2.0? -
is change of dateformat
format
correct?
[elasticproperty(docvalues = true, dateformat = "epoch_millis")] -> [nest.date(docvalues = true, format = "epoch_millis")]
document path required parameter of update. document path change equivalent assuming there not document path setting updateselector
?
elasticwriteclient.update<t>(updateselector); -> elasticwriteclient.update<t>("", updateselector);
updating unit tests, requestinformation , ielasticsearchresponse gone. paradigm here now? ie test initialize statement:
searchresponse.requestinformation = new mock<ielasticsearchresponse>().object;
the releases page in github has documentation concerning breaking changes:
Comments
Post a Comment