I\'ve got a many-to-many relationship mapped in my Entity Framework POCO classes. In the database it\'s a join table with a composite key, and the POCO properties are generated fine.
I\'m using Entity Framework 4 with POCO开发者_StackOverflow template. I have a List where MyObject are dynamic proxies. I want to use the XmlSerializer to serialize this list, but I don\'t want them
I use a WCF DataService and want to use POCOs. I have to specify a DataServiceKey in order for it to work (obviously).
I\'d like to get a IQueryable<User> being POCO. I have two functions in my repository which converts O/RM to POCO and vice versa. This works fine when saving or getting one user, but what about
We have a typical multi-tier/layer architecture. Application + WCF Service + Repository/EF4/Database.
Although I have some .net o/rm notions, I\'m confused about three terms in EF4 parlance: Trackable entities, EntityObjects and POCOs.
In EF4, is it possible to convert a开发者_运维知识库 POCO object (created using new MyObject()) to a Dynamic Proxy (like you would get with ObjectContext.CreateObject())?
I\'m writing a wrapping library around a SCADA database and I\'ve got a small \'hippy-code-design\' question. It involves how I\'m converting the supplied DB objects into POCO\'s.
Example: a product entity is loaded including its tags without tracking: repository.Product .Include(\"Tag\")
I\'m using EF4 with POCO objects the 2 tables are as follows Service ServiceID, Name, StatusID Status StatusID,