如何使用 Entity Framework 4.1 在 ASP.NET MVC 3 模型类的构造函数中注入依赖项?
EF 需要无参数构造函数,但是否可以通过某种方式重写它?
public class MyModelClass
{
ADependency _a;
public MyModelClass(ADependency a)
{
_a = a;
}
...
}
因此,当客户端执行如下查询时:
var myModelClasses = context.MyModelClasses;
每个类都是通过注入的依赖实例创建的。
EF requires parameterless constructor but is it possible to override this some how?
public class MyModelClass
{
ADependency _a;
public MyModelClass(ADependency a)
{
_a = a;
}
...
}
So when the client does a query like:
var myModelClasses = context.MyModelClasses;
each class gets created with the dependent instance injected.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用空构造函数并使用 DependencyResolver 并在构造函数中执行此操作。
You could use the empty constructor and use the DependencyResolver and do it IN the constructor.
不,不可能覆盖。 EF 必须使用无参数构造函数,并且此行为无法更改,因为无法使用自定义工厂。您可以使用 @Kevin 提到的服务定位器模式的解决方案,也可以处理
ObjectMaterialized
事件并通过实体的属性设置依赖项。No it is not possible to override. EF have to use parameterless constructor and this behaviour cannot be changed because there is no way to use custom factories. You can either use the solution with service locator pattern mentioned by @Kevin or you can handle
ObjectMaterialized
event and set the dependency through the property of your entity.