另一个存储库模式问题:如何处理领域模型投影?

发布于 2024-08-22 18:55:16 字数 122 浏览 8 评论 0原文

我已经阅读了很多有关存储库模式实现的内容,但仍然不知道应该如何实现实体投影查询?

例如,我有大型且复杂的产品实体,但我只想显示产品的名称和 ID。 我应该在哪里实施这个投影?在我的实体存储库中还是在调用者代码中?

I've read a lot about repository pattern implementation and I still can't find out how should I implement entity projections querying?

For example I have large and complex product entity, but I want to display only product's name and it's id.
Where should i implement this projection? In my entity repository or in a caller code?

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

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

发布评论

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

评论(3

楠木可依 2024-08-29 18:55:16

我在存储库中执行此操作。

例如,我的 ProductRepository 界面如下所示:

interface IProductRepository
{
    Product Get( int productId );

    void Save( Product product );

    ProductView FindProducts(string productNameSearch);
}

其中 ProductViewProduct 的简化表示。 (例如仅包含名称和 ID)。

获取 ProductView 的投影是必须抽象出来的东西,恕我直言,存储库是一个很好的地方。

I do this in the repository.

For instance, my ProductRepository interface would look like this:

interface IProductRepository
{
    Product Get( int productId );

    void Save( Product product );

    ProductView FindProducts(string productNameSearch);
}

Where ProductView is a simplified representation of Product. (Only containing name and id for instance).

The projection to get a ProductView, is something that has to be abstracted away, and the repository is a good place for it, imho.

一向肩并 2024-08-29 18:55:16

我最近一直在梦​​想以下模式:

interface IRepository 
{
    Product FindByName(string name);
    ProjectionType FindByName<ProjectionType>(string name, 
        Expression<Func<Product, ProjectionType>> selector);
    // ...
}

通过这种模式,您可以使用 LINQ 表达式和匿名类动态指定投影,如下所示:

var productView = repository.FindByName("foo", 
    p => new { p.SomeProperty, p.SomeOtherProperty } );

我认为这非常简洁。对于 NHibernate.Linq,实现可能如下所示:

ProjectionType FindByName<ProjectionType>(string name, Expression<Func<Product, ProjectionType>> selector) 
{
    using(var session = this.sessionFactory.OpenSession()) {
        return session.Linq<Product>()
                      .Where(p => p.Name.Equals(name))
                      .Select(selector)
                      .SingleOrDefault();
    }
}

免责声明:谨防上述代码中的错误或不良风格。甚至可能无法编译。这只是我的一点想法。但我认为这个想法应该很清楚。

有什么想法吗?

I've been dreaming up the following pattern recently:

interface IRepository 
{
    Product FindByName(string name);
    ProjectionType FindByName<ProjectionType>(string name, 
        Expression<Func<Product, ProjectionType>> selector);
    // ...
}

With this pattern, you can for instance specify projections on the fly with LINQ expressions and anonymous classes, like this:

var productView = repository.FindByName("foo", 
    p => new { p.SomeProperty, p.SomeOtherProperty } );

Which I think is pretty neat. With NHibernate.Linq, an implementation might look like this:

ProjectionType FindByName<ProjectionType>(string name, Expression<Func<Product, ProjectionType>> selector) 
{
    using(var session = this.sessionFactory.OpenSession()) {
        return session.Linq<Product>()
                      .Where(p => p.Name.Equals(name))
                      .Select(selector)
                      .SingleOrDefault();
    }
}

DISCLAIMER: Beware of bugs or bad style in above code. Might not even compile. This is just from the tip of my head. But I think the idea should be pretty clear.

Any thoughts?

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