| LinqUtilsDetermineDifferentValuesForNestedQueryFilter Method  | 
 
            Determines the different values for nested query filter. This set of values is then used to build a parameterized query if possible.
            
 
    Namespace: 
   SD.LLBLGen.Pro.LinqSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntaxpublic static Dictionary<string, Object> DetermineDifferentValuesForNestedQueryFilter(
	List<Object[]> currentLevelData,
	NestedQuerySpecification nestedQuery
)
Public Shared Function DetermineDifferentValuesForNestedQueryFilter ( 
	currentLevelData As List(Of Object()),
	nestedQuery As NestedQuerySpecification
) As Dictionary(Of String, Object)
Parameters
- currentLevelData
 - Type: System.Collections.GenericListObject
The current level data. - nestedQuery
 - Type: SD.LLBLGen.Pro.LinqSupportClassesNestedQuerySpecification
The nested query. 
Return Value
Type: 
DictionaryString, 
Objectlist of different values, per row in currentLevelData. It uses a string-based key where the values are stored as strings to
            avoid complex hashing algorithms to match duplicates.
See Also