Class QueryableRelationValueExtensions
Version: 3.2
Extension methods for QueryableRelationValue.
Inheritance
object
QueryableRelationValueExtensions
Namespace: StylelabsStylelabs.MStylelabs.M.BaseQueryingLinq
Assembly: Stylelabs.M.Sdk.dll
Syntax
RequestResponse
public static class QueryableRelationValueExtensionsMethods
In(QueryableRelationValue, IEnumerable<long>)
The value of the relation must be at least one of the specified values.
Declaration
RequestResponse
public static bool In(this QueryableRelationValue value, IEnumerable<long> values)Parameters
| Type | Name | Description |
|---|---|---|
| QueryableRelationValue | value |
The value. |
| IEnumerable<>long | values |
The values to filter on. |
Returns
| Type | Description |
|---|---|
| bool |
true if the value is included in the collection, false otherwise. |
In(QueryableRelationValue, params long[])
The value of the relation must be at least one of the specified values.
Declaration
RequestResponse
public static bool In(this QueryableRelationValue value, params long[] values)Parameters
| Type | Name | Description |
|---|---|---|
| QueryableRelationValue | value |
The value. |
| long | values |
The values to filter on. |
Returns
| Type | Description |
|---|---|
| bool |
true if the value is included in the collection, false otherwise. |