WhereConditionBase<TParent>.WhereIn Method |
Name | Description | |
---|---|---|
![]() | WhereIn(String, IDataQuery) |
Adds where condition to the nested query, e.g. "columnName IN (...)"
|
![]() | WhereIn(String, ICollection<Guid>) |
Adds where condition to the list of values, e.g. "columnName IN (...)"
|
![]() | WhereIn(String, ICollection<Int32>) |
Adds where condition to the list of values, e.g. "columnName IN (...)"
|
![]() | WhereIn(String, ICollection<Int64>) |
Adds where condition to the list of values, e.g. "columnName IN (...)"
|
![]() | WhereIn(String, ICollection<String>) |
Adds where condition to the list of values, e.g. "columnName IN (...)"
|
![]() | WhereIn(String, IDataQuery, Boolean) |
Adds where condition to the list of values, e.g. "columnName IN (...)".
Supported generic type is int, long, string or guid ONLY!
|
![]() | WhereIn(String, ICollection<Guid>, Boolean) |
Adds where condition to the list of values, e.g. "columnName IN (...)"
|
![]() | WhereIn(String, ICollection<Int32>, Boolean) |
Adds where condition to the list of values, e.g. "columnName IN (...)"
|
![]() | WhereIn(String, ICollection<Int64>, Boolean) |
Adds where condition to the list of values, e.g. "columnName IN (...)"
|
![]() | WhereIn(String, ICollection<String>, Boolean) |
Adds where condition to the list of values, e.g. "columnName IN (...)"
|