ProductCollection select = new
Select(Product.SupplierIDColumn).From<Product>().Distinct()
.ExecuteAsCollection<ProductCollection>();
http://subsonicproject.com/docs/Distinct
从上面的例子我试图从我的表中获得不同的类别,但是很多问题来了
Product.SupplierIDColumn
我不知道为什么我的班级EventListing
没有这些列的智能感知Distinct()
功能在From<EventListing>()
之后无法使用。
醇>
答案 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();