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