List<object[]> products = GetSession().CreateCriteria<Product>()
.SetProjection(Projections.ProjectionList()
.Add(Projections.Property("Id"))
.Add(Projections.Property("Name"))
.Add(Projections.Property("Price"))
)
.List();
public class ProductRow { public int Id { get; set; } public string Name { get; set; } public double Price { get; set; } }
我怎樣才能得到的結果作爲List <ProductRow>類型類型化的類型?NHibernate的投影:如何獲得使用標準API與投影
我看到有一個函數Projection.Cast,但我沒有看到有關如何使用它的任何文檔。
porjection - > projection Ceritria - > Criteria – labilbe 2010-02-14 08:16:10