Click or drag to resize
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)
Syntax
public static Dictionary<string, Object> DetermineDifferentValuesForNestedQueryFilter(
	List<Object[]> currentLevelData,
	NestedQuerySpecification nestedQuery
)

Parameters

currentLevelData
Type: System.Collections.GenericListObject
The current level data.
nestedQuery
Type: SD.LLBLGen.Pro.LinqSupportClassesNestedQuerySpecification
The nested query.

Return Value

Type: DictionaryString, Object
list 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