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