6 lines
158 B
C#
6 lines
158 B
C#
|
protected void FilterProducts(object sender, CustomExpressionEventArgs e)
|
||
|
{
|
||
|
e.Query = from p in e.Query.Cast()
|
||
|
where p.UnitPrice >= 10
|
||
|
select p;
|
||
|
}
|