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:

releases pages

breaking changes page nest


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -