Update to latest RESTier and OData libraries#223
Conversation
|
|
||
| public Person() | ||
| { | ||
| Emails = new List<string>(); |
There was a problem hiding this comment.
to create/allocate empty list for those collection properties looks 'annoying'.
I know OData spec requires collection should not be null. But, Why? can we change this 'Rule'?
From C# perspective, a collection value call be:
- null
- empty
- items
|
You might want to wait to accept this until Restier 1.1.1 comes out at the end of the week. There is a threading issue on batched changes that someone reported, and we changed the internals to use ConcurrentDictionary. There is an RC version out for this now, and I'm planning on shipping an RTM by Friday. |
|
Restier 1.1.1 has been released. If you update the references here you should be good to go. Thanks! |
marabooy
left a comment
There was a problem hiding this comment.
LGTM should we update to use the new restier version released today?
Fixes #218
Also fixes OData/odataorg.github.io#369
Updates to latest RESTier/OData and makes sure collection values in sample data are initialized.