亚音速3中不同查询的问题

时间:2011-05-26 20:21:15

标签: c# subsonic

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

http://subsonicproject.com/docs/Distinct

从上面的例子我试图从我的表中获得不同的类别,但是很多问题来了

  1. 我不能放这样的列Product.SupplierIDColumn我不知道为什么我的班级EventListing没有这些列的智能感知
  2. {li> Distinct()功能在From<EventListing>()之后无法使用。

1 个答案:

答案 0 :(得分:0)

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

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

-OR -

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