我正在使用以下
产品objProduct =新产品(“active_flag”,“true”);
这一行会产生多行,如何访问多行? ObjProduct只有一行?
答案 0 :(得分:4)
如果您使用的是2.1或更高版本,则可以执行以下操作:
ProductCollection products = DB.Select().From(Product.Schema)
.Where(Product.Columns.active_flag).IsEqualTo(true)
.ExecuteAsCollection<ProductCollection>();
答案 1 :(得分:0)
另一种方式......
ProductCollection products = new ProductCollection()
.Where(Product.Columns.active_flag, true)
.Load();