我正在使用Code-First
和Entity Framework 5
。Repository Pattern
我需要从一些扩展方法中获取上下文,以访问无法通过属性访问的其他实体。
例子:
public static class MyClassExtensions
{
public static void DoSomething(this MyClass mClass)
{
// This is what I want to do
// GetContextSomeWay() is what I need
// GetRepository is method from my context
mClass.GetContextSomeWay().GetRepository<SomeRepository>().Where(...);
}
}
public class MyService
{
public void DoSomethingOnService(int id)
{
MyContext ctx = new MyContext();
MyClass cl = ctx.GetRepository<MyClass>().Single(c => c.Id == id);
cl.DoSomething();
}
}
我想了两个解决方案。
- 将上下文作为参数传递给扩展方法
ObjectMaterialized
使用事件为每个实体设置上下文
尽管第一种方法很容易工作,但我不能停止认为这不是一个好的做法。
对于第二个,除了为我的每个类添加一个新属性之外,我想知道这是否会成为性能问题。这是过度关注,还是有效?
这个问题还有其他解决方案吗?