EDIT: I'd like to get a definitive answer on whether or not it's possible to determine which ObjectContext is tracking which Entities. Is there a particular property that says "Entity x belongs to this context?"
|
feedback
|
|
If you have references to all possible | |||
feedback
|
|
This doesn't necessarily answer your question but its important for a developer to understand the contexts for which they are instantiating and one method is to realize the "UnitOfWork". For each unit of work there exists a single context and for that unit of work to perform the specific task at hand (e.g. save form data). Using the "UnitOfWork" pattern, it then receives Id's for dependent objects (or the object itself for the Id), retrieves the objects, creates new objects, wires up dependent and new objects then saves changes. Then for the code block calling the unit of work to notify other areas of code for which changes have been made via messaging. But since you are stateless the messaging convention would not directly apply. The second is, I hardly use AutoMapper or alike and instead use POCO with Code First. Using this convention I now use my POCO objects as by business objects which get populated by the data layer (EF) where my configurations now occur in the DbContext (UnitOfWork) OnModelCreating method. Removing the entire mapping process reduces a fair amount of code and complexity. So my recommendation is to look at your design and ensure there are clear cut patterns for which you manage/seperate data access. With all that said, mappers are great for web services. The purpose is to minimize the amount of data sent and received through the request and response processing. For example if all the caller wants is the first and last name therefore it doesn't make sense to send the entire profile. | |||||
feedback
|