ADO.NET Data Services Entity Framework request error when property setter is internal
- by Jim Straatman
I receive an error message when exposing an ADO.NET Data Service using an Entity Framework data model that contains an entity (called "Case") with an internal setter on a property. If I modify the setter to be public (using the entity designer), the data services works fine.
I don’t need the entity "Case" exposed in the data service, so I tried to…