I have objects that are defined by the Entity Framework that I have then added additional methods and properties to via partial classes. I think I understand most of the limitations around doing this, but wanted to confirm something I am seeing (or hopefully learn what I need to do to make this work).
I have a partial class that then has a read-only property that uses a couple of the items to create a calculated field that is read-only. It was curious to see that read-only property did not come back via the ADO.Net Data Services as I was hoping/expecting. i.e. I was expecting to see the properties on the entity framework and the property being definied in code via the partial class come via the Data Service call.
Is this the case? Are the partial classes completely ignored when ADO.Net Data Services is querying for data? If so what is the best practice for getting a read-only type property onto an entity (as I would like to avoid having the same partial classes with different namespaces being cut and pasted into both the client side and server side code bases).