Class QueryableIdentifierExtensions
Extension method for QueryableIdentifier.
Inheritance
Namespace: StylelabsStylelabs.MStylelabs.M.BaseQueryingLinq
Assembly: Stylelabs.M.Sdk.dll
Syntax
public static class QueryableIdentifierExtensionsMethods
In(QueryableIdentifier, IEnumerable<string>)
The QueryableIdentifier should be at must one of the specified values.
Note that QueryableIdentifier can be used for different types of filters (e.g. CreatedByUsername, DefinitionName, ...).
Declaration
public static bool In(this QueryableIdentifier value, IEnumerable<string> values)Parameters
| Type | Name | Description |
|---|---|---|
| QueryableIdentifier | value |
The value. |
| IEnumerable<>string | values |
The values to filter on. |
Returns
| Type | Description |
|---|---|
| bool |
true if the value is include in the collection, false otherwise. |
In(QueryableIdentifier, params string[])
The QueryableIdentifier should be at must one of the specified values.
Note thatQueryableIdentifier can be used for different types of filters (e.g.CreatedByUsername, DefinitionName, ...).
Declaration
public static bool In(this QueryableIdentifier value, params string[] values)Parameters
| Type | Name | Description |
|---|---|---|
| QueryableIdentifier | value |
The value. |
| string | values |
The values to filter on. |
Returns
| Type | Description |
|---|---|
| bool |
true if the value is include in the collection, false otherwise. |