I\'ve been using the entity framework in combination with the self tracking entity code generation templates for my latest silverlight to WCF application. It\'s the first time I\'ve used the entity fr
I am using self tracking entities and have moved the entity classes to another assembly by using \'Add as link\' to point to the TT file as mentioned here.N开发者_JAVA百科ow though, when I update the
I am putting together a WCF Data Service for PatientEntities using Entity Framework. My solution needs to address these requirements:
Self tracking entities.Awesome. Except when you do something like return Db.Users; none of the self-tracking entities are tracking (until, possibly, they are deserialized).
Last year I developed a data access service for our project using Entity Framework (.NET3.5 of course) and using Julie Lerhman\'s book as a guide developed state tracking POCO objects. We use WCF and
I have an MVC2 app where I am starting to use the STE\'s.I am looking for some clarification on how updates should work.