亚音速 3 中的独特查询问题

发布于 2024-11-10 03:11:16 字数 570 浏览 1 评论 0原文

ProductCollection select = new 
        Select(Product.SupplierIDColumn).From<Product>().Distinct()
        .ExecuteAsCollection<ProductCollection>();

http://subsonicproject.com/docs/Distinct

从上面的示例中,我试图从我的列表中获取不同的类别表,但出现很多问题

  1. 我不能放置这样的列 Product.SupplierIDColumn 我不知道为什么我的类 EventListing 对这些列没有智能感知
  2. Distinct() 函数在 From() 之后不可用。
ProductCollection select = new 
        Select(Product.SupplierIDColumn).From<Product>().Distinct()
        .ExecuteAsCollection<ProductCollection>();

http://subsonicproject.com/docs/Distinct

From above example I am trying to get distinct category from my table but many problems comes

  1. I can not put column like this Product.SupplierIDColumn I dont know why my class EventListing has no intellisense for these columns
  2. Distinct() function is not available after From<EventListing>().

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

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

发布评论

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

评论(1

晨曦÷微暖 2024-11-17 03:11:16

有趣的是,看起来 SubSonic 2 中的 SqlQuery 类有一个 Distinct() 方法,但 SubSonic 3 中的 SqlQuery 类没有。您可以尝试 SS2 而不是 3,或者如果您使用 3,我建议改用 Linq 表达式。换句话说,类似于:

var data = (from x in db.Products
            select x.SupplierId)
           .Distinct();

-或-

var data = db.Products.Select(x => x.SupplierId).Distinct();

Interestingly, it looks like the SqlQuery class in SubSonic 2 had a Distinct() method, but the SqlQuery class in SubSonic 3 does not. You could try SS2 instead of 3, or if you are using 3, I suggest using Linq expressions instead. In other words, something like:

var data = (from x in db.Products
            select x.SupplierId)
           .Distinct();

-or-

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