OData
Everything about my work with the OData protocol and WCF Data Services
Just a second ago I tried to update my WCF data service. I wanted to expose a collection of the following class (This model is part of a hand made POCO set which is mapped to an E/F conceptional model): class Car { public int MyID { get; set; } public string CarName { get; set; } } I got a service exception of course and the exception message said something about that the element type of my cars collection is not an entity type. To solve this problem you have 2 options: Rename your MyID property...