帮助使用 asp.net mvc 中的 IQueryables 和lazyLoading

发布于 2024-10-16 13:51:58 字数 563 浏览 2 评论 0原文

假设我想添加分页支持。 我的应用程序分为 Web、服务和存储库。

控制器仅与服务通信,服务获取数据并执行业务逻辑。

假设我想要分页支持..我的 ContributorService 中有这个方法

public IQueryable<Contributor> GetContributors(int page, int pageSize)
        {
            return _repository.GetAll().OrderBy(c=>c.ACC_CREATEDATE).Skip((page)*pageSize).Take(pageSize);//solo temporalmente
        }

可以吗?或者 OrderBy、Skip、Take 应该在存储库中完成吗?

目前仅执行此操作

public IQueryable<Contributor> GetAll()
        {
            return db.Contributors;
        }

Say i want to add pagination support.
My app is separated in Web, Services and repositories.

The Controller only speaks to the Service and the Service gets Data and does business logic.

Say i want pagination support.. I have this method in my ContributorService

public IQueryable<Contributor> GetContributors(int page, int pageSize)
        {
            return _repository.GetAll().OrderBy(c=>c.ACC_CREATEDATE).Skip((page)*pageSize).Take(pageSize);//solo temporalmente
        }

is that ok?? or should the OrderBy, Skip, Take be done in the repository?

which currently only does this

public IQueryable<Contributor> GetAll()
        {
            return db.Contributors;
        }

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

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

发布评论

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

评论(1

泛泛之交 2024-10-23 13:51:59

我会将查询添加到业务对象中(我认为您没有一个,是吗),您可能有一个基本版本,以及另一个用于分页数据的版本。并且希望服务通过调用 ToList 来执行该查询,我发现将查询对象返回到控制器是危险的。

您的存储库可能有一个 GetPartial 方法,其中包含排序、来源、目标和过滤器参数。如果您有通用服务,您也可以在该通用服务中实现此功能。

public List<Contributor> GetPartial<TSortBy>(Expression<Func<Contributor, TSortBy>> sortByExpr, Expression<Func<Contributor, bool>> filterExpr, int pageNo, int pageSize)
        {
            var query = db.Contributors;
            if (filterExpr != null)
                   query.Where(filterExpr);
query.orderBy(sortByExpr).Skip (...).Take(...).ToList();

        }

如果你有一个Repository类,你可以添加这个方法。
顺便说一下,我正在使用动态 LINQ,这使得以纯文本形式按表达式传递顺序变得更容易(就像 sql 一样)

I would add the query to the business object ( I think you dont have one, do you), there you may have a base version of it, and another one for the paged data. And would expect to service to execute that query by calling the ToList, I find it dangerous to return a query object to the controller.

Your repository might have a GetPartial Method, with the sort, from, to, and a filter params. If you have a generic service, you might also implement this in that generic service.

public List<Contributor> GetPartial<TSortBy>(Expression<Func<Contributor, TSortBy>> sortByExpr, Expression<Func<Contributor, bool>> filterExpr, int pageNo, int pageSize)
        {
            var query = db.Contributors;
            if (filterExpr != null)
                   query.Where(filterExpr);
query.orderBy(sortByExpr).Skip (...).Take(...).ToList();

        }

if you have a Repository class, you can add this method.
By the way, I am using Dynamic LINQ, which makes it easier to pass order by expression as plain text (just like sql)

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