Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way, with EF6, to inject a custom object instance creator? What I need to do is to provide instances of entities to EF before the matrialization occurs.

basically I want to be able to define my POCO entity with non parameterless constructor, so to be able to use DI aggreate, that in the end is persisted with EF.

I've that I can achive something similar using the ObjectMaterialized event:

var oc = ( this as IObjectContextAdapter ).ObjectContext;
oc.ObjectMaterialized += ( s, e ) => 
{
   //resolve and inject dependencies here using e.g. public properties  
};

but I'd really love to have dependencies declared on the constructor.

Any idea? Cheers, .m

share|improve this question
If I may ask, what dependency are you wanting to inject? – Quinton Bernhardt Jan 19 at 9:13
basically domain services in my domain model aggregates. I'm coming from the MongoDB and RavenDB experience where having a domain model persisted on the storage is really easy and injecting dependencis at deserialization time is really easy, so I'd like to undertand if I can have the same support with EF6 (alfa2 currently). basically I'm trying to find a way to tell EF to use my container to resolve entities, or at least to ask me how to resolve entities :-) – Mauro Servienti Jan 19 at 9:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.