SubSonic .Paged() 查询返回重复记录

发布于 2024-10-16 11:46:21 字数 182 浏览 2 评论 0原文

使用 SubSonic (2.2) SqlQuery 对象,我正在查询一个包含另一个表中不同行的视图。但是,查询结果包含视图中某些行的多行。看来是因为在查询中生成了临时表上的联接来实现分页。如何避免这种行重复?

加分点:我必须使用视图,因为 SubSonic 无法同时执行 .Paged() 和 .Distinct() 。为什么不呢?

Using a SubSonic (2.2) SqlQuery object, I am querying a view that contains distinct rows from another table. The results of the query, however, contain multiple rows for certain rows in the view. It appears to be because of a join on a temporary table in the query generated to achieve paging. How can I avoid this duplication of rows?

Bonus points: I have to use the view because SubSonic can't do .Paged() and .Distinct() at the same time. Why not?

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

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

发布评论

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

评论(1

猫腻 2024-10-23 11:46:21

如果我没记错的话,你必须在正确的位置使用不同的。

var query = DB.Select().From<Products>()
              .Where(Products.CategoryColumn).IsEqualTo(5).Distinct();

var query = DB.Select().Distinct().From<Products>()
              .Where(Products.CategoryColumn).IsEqualTo(5);

两个语句都可以编译,但第一个语句会生成无效的 sql 代码。调试 SubSonic SqlQueries 的一个很好的起点是生成输出:

var sql = query.BuildSqlStatement();

另一个解决方案可能是使用 Group 而不是 unique,这样您就可以首先避免视图。

If I remember correctly you have to use distinct on the right position.

var query = DB.Select().From<Products>()
              .Where(Products.CategoryColumn).IsEqualTo(5).Distinct();

var query = DB.Select().Distinct().From<Products>()
              .Where(Products.CategoryColumn).IsEqualTo(5);

Both statements compile but the first generates invalid sql code. A good starting point for debugging SubSonic SqlQueries is to generate the output:

var sql = query.BuildSqlStatement();

Another solution could be to use Group instead of distinct so you can avoid the view in the first place.

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