IEntityCollectionCoreFindMatches 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.4.0.0 (5.4.0)
SyntaxList<int> FindMatches(
	IPredicate filter
)
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