Class QueryableCollectionViewExtensions
Class that defines the extension methods for the queryable collection view.
Inheritance
System.Object
QueryableCollectionViewExtensions
Namespace: Syncfusion.UI.Xaml.Data
Assembly: Syncfusion.Data.WinUI.dll
Syntax
public static class QueryableCollectionViewExtensions : Object
Methods
GetPredicateExpressionExt(CollectionViewAdv, IQueryable, out ParameterExpression)
Gets the predicate expression extension for the given values.
Declaration
public static Expression GetPredicateExpressionExt(this CollectionViewAdv view, IQueryable source, out ParameterExpression parameterExpression)
Parameters
| Type | Name | Description |
|---|---|---|
| CollectionViewAdv | view | The collection view. |
| System.Linq.IQueryable | source | The IQueryable source. |
| System.Linq.Expressions.ParameterExpression | parameterExpression | The parameter expression. |
Returns
| Type | Description |
|---|---|
| System.Linq.Expressions.Expression | The predicate expression for the given values. |
GetPredicateExpressionExt(CollectionViewAdv, IQueryable, out ParameterExpression, String, Boolean)
Declaration
public static Expression GetPredicateExpressionExt(this CollectionViewAdv view, IQueryable source, out ParameterExpression parameterExpression, string columnName, bool returnColumnExpression)
Parameters
| Type | Name | Description |
|---|---|---|
| CollectionViewAdv | view | The collection view. |
| System.Linq.IQueryable | source | The IQueryable source. |
| System.Linq.Expressions.ParameterExpression | parameterExpression | The parameter expression. |
| System.String | columnName | The column name. |
| System.Boolean | returnColumnExpression | A boolean value indicating whether to return the column expression. |
Returns
| Type | Description |
|---|---|
| System.Linq.Expressions.Expression | The predicate expression for the given values. |