用于多个数据库上下文的 EF 存储库

发布于 2024-11-17 23:42:12 字数 81 浏览 0 评论 0原文

任何人都建议我如何构建一个支持多个上下文的 EF 存储库模式(多个数据库上下文,每个上下文都属于一个单独的数据库)。

问候, 哈琳。

Anyone suggest me how to build an EF repository pattern that supports multiple contexts (more than one Db context each one belongs to a separate DB.).

Regards,
Hareen.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

梦过后 2024-11-24 23:42:12

使用依赖项注入框架为您的存储库注入上下文。

public class FooRepository
{
  FirstContext _fc;
  SecondContext _sc

  public FooRepository(FirstContext fc, SecondContext sc)
  {
     _fc = fc;
     _sc = sc;
  }
}

public class BarRepository
{
  FirstContext _fc;
  SecondContext _sc
  ThirdContext _tc

  public BarRepository(FirstContext fc, SecondContext sc, ThirdContext tc)
  {
     _fc = fc;
     _sc = sc;
     _tc = tc;
  }
}

Use a dependency injection framework to inject the Contexts for your repositories.

public class FooRepository
{
  FirstContext _fc;
  SecondContext _sc

  public FooRepository(FirstContext fc, SecondContext sc)
  {
     _fc = fc;
     _sc = sc;
  }
}

public class BarRepository
{
  FirstContext _fc;
  SecondContext _sc
  ThirdContext _tc

  public BarRepository(FirstContext fc, SecondContext sc, ThirdContext tc)
  {
     _fc = fc;
     _sc = sc;
     _tc = tc;
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文