试图向过滤字符串添加多个参数。
这工作正常...
DeliveryTransactions.FilterString = "[IngredientName] = [Parameters.Ingredient]";
但是,我想添加另一个字符串
[LocationName] = [Parameters.Location]
我该怎么做?
试图向过滤字符串添加多个参数。
这工作正常...
DeliveryTransactions.FilterString = "[IngredientName] = [Parameters.Ingredient]";
但是,我想添加另一个字符串
[LocationName] = [Parameters.Location]
我该怎么做?
用于And
组合多个条件或Or
根据您的要求。
DeliveryTransactions.FilterString = "[IngredientName] = [Parameters.Ingredient] And [LocationName] = [Parameters.Location]";
使用And
或Or
顺便说一句,对于初学者来说学习这个的一个好方法是使用 FilterControl:
http://demos.devexpress.com/aspxgridviewdemos/filtering/FilterBuilder.aspx