EF4 和 UnitOfWork - 如何使自定义属性发挥作用

发布于 2024-12-09 03:37:11 字数 1095 浏览 0 评论 0原文

假设我有:

public class A
{
    public virtual int Id { get; set; }
}

public class ARepository
{
    private SomeContext _context;
    public ARepository(IUnitOfWork unitOfWork)
    {
        _context = unitOfWork;
    }
    public A GetAById(int aId)
    {
        return _context.A.Where(o => o.Id == aId).SingleOrDefault();
    }
}

public class B
{
    public virtual int Id { get; set; }
    public virtual Category Category { get ; set; } //enum with NEW and OLD values
    public virtual int Quantity { get; set; }
}


public class BRepository
{
    private SomeContext _context;
    public BRepository(IUnitOfWork unitOfWork)
    {
       _context = unitOfWork;
    }
    public B GetBById(int bId)
    {
        return _context.B.Where(o => o.Id == bId).SingleOrDefault();
    }
}

并且我正在使用实体框架(首先是 4.1 代码)。

例如,我将如何在 A 类中实现自定义属性,例如:

//returns the total of all B objects in the context where the category is NEW
public int NewBTotals
{
}

并且不必创建上下文?

希望我的问题足够清楚,如果不是,请告诉我,我会尝试更详细地描述我想要实现的目标(时间不够了)。

Say I have:

public class A
{
    public virtual int Id { get; set; }
}

public class ARepository
{
    private SomeContext _context;
    public ARepository(IUnitOfWork unitOfWork)
    {
        _context = unitOfWork;
    }
    public A GetAById(int aId)
    {
        return _context.A.Where(o => o.Id == aId).SingleOrDefault();
    }
}

public class B
{
    public virtual int Id { get; set; }
    public virtual Category Category { get ; set; } //enum with NEW and OLD values
    public virtual int Quantity { get; set; }
}


public class BRepository
{
    private SomeContext _context;
    public BRepository(IUnitOfWork unitOfWork)
    {
       _context = unitOfWork;
    }
    public B GetBById(int bId)
    {
        return _context.B.Where(o => o.Id == bId).SingleOrDefault();
    }
}

And I'm working with Entity Framework (4.1 code first).

How would I implement for example a custom property in A class like:

//returns the total of all B objects in the context where the category is NEW
public int NewBTotals
{
}

And not having to create a context?

Hopefully my question is clear enough, if not please let me know and I'll try to be more descriptive of what I want to achieve (ran out of time).

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

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

发布评论

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

评论(1

早乙女 2024-12-16 03:37:11

我发现即使 B 没有 A 的外键,我也可以创建从 A 到 B 的导航属性,反之亦然,这可以自行解决问题。

I found that even by B not having a foreign key to A, I can create a navigation property from A to B and vice versa which kind of solves the problem on its own.

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