WhereClipBuilder是在1.7.2版本中新增的一個類,用來創建WhereClip。
在之前版本多條件創建WhereClip如下:
WhereClip where = WhereClip.All;
where = where.And(Products._.ProductName.Contain("apple"));
where = where.And(Products._.UnitPrice > 1);
where = where.Or(Products._.CategoryID == 2);每增加一個條件都是生成一個新的WhereClip。
使用WhereClipBuilder如下:
WhereClipBuilder wherebuilder = new WhereClipBuilder();
wherebuilder.And(Products._.ProductName.Contain("apple"));
wherebuilder.And(Products._.UnitPrice > 1);
wherebuilder.Or(Products._.CategoryID == 2);
WhereClipBuilder是條件累加並不增 加條件而創建新實例, 從而得到重用,節省資源。
具體使用:
Northwind.From<Products>()
.Where(wherebuilder.ToWhereClip())
.ToList();
生成的sql:
Text: SELECT * FROM [Products]
WHERE (((([Products].[ProductName] LIKE @jtioerxooyxzyvsj) AND ([Products].[UnitPrice] > @txdupnwvhfznviqj))
OR ([Products].[CategoryID] = @iqgkjykstppcrqsq)))
Parameters:
@jtioerxooyxzyvsj[String] = %apple%
@txdupnwvhfznviqj[Int32] = 1
@iqgkjykstppcrqsq[Int32] = 2
下載:http://www.cnblogs.com/huxj/archive/2009/11/21/1607791.html