Click or drag to resize
DistinctFilteringPreferenceType Enumeration
Enum which defines the preference type for distinct filtering for select queries.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public enum DistinctFilteringPreferenceType
Members
  Member nameValueDescription
System0 Emit Distinct into the SQL query using the rules embedded in the code (default).
AlwaysClientSide1 Always use client-side Distinct filtering. This can be CPU intensive with large sets of duplicates, however on databases where DISTINCT is very time consuming, this setting can be an optimization.
Legacy2 Use the v2.6 rules set for emitting distinct. Similar to 'System', but with one exception: if the relationships specified contain m:1 or 1:1 relationships, it will see the resultset as 'unique rows' and will use that into account when emitting Distinct and TOP for entity fetches. This option can give wrong results (no distinct emitted while it should emit distinct). In that case, use 'System' (recommended).
See Also