如何使用 Entity Framework 4.1 在 ASP.NET MVC 3 模型类的构造函数中注入依赖项?

发布于 2024-11-30 13:30:44 字数 301 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

路弥 2024-12-07 13:30:44

您可以使用空构造函数并使用 DependencyResolver 并在构造函数中执行此操作。

public class MyModelClass
{
   ADependency _a;
   public MyModelClass()
   {

            _a = DependencyResolver.Current.GetService<_a>();
   }
   ...
}

You could use the empty constructor and use the DependencyResolver and do it IN the constructor.

public class MyModelClass
{
   ADependency _a;
   public MyModelClass()
   {

            _a = DependencyResolver.Current.GetService<_a>();
   }
   ...
}
故事未完 2024-12-07 13:30:44

不,不可能覆盖。 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文