CollectionCoreTFindMatches Method |
Gets all indices of all the entities in the current order of this collection which match the passed in filter.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.1.0.0 (5.1.0)
Syntax public virtual List<int> FindMatches(
IPredicate filter
)
Public Overridable Function FindMatches (
filter As IPredicate
) As List(Of Integer)
Parameters
- filter
- Type: SD.LLBLGen.Pro.ORMSupportClassesIPredicate
The filter the entity has to match with. If null, all entities match and every index is returned
Return Value
Type:
ListInt32List of indices of all entities matching the filter
See Also