Class QueryableCollectionViewExtensions
Class that defines the extension methods for the queryable collection view.
Inheritance
System.Object
QueryableCollectionViewExtensions
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Data
Assembly: Syncfusion.Data.WinForms.dll
Syntax
public static class QueryableCollectionViewExtensions
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. |