CacheQueryOptionsUseSql92CompliantStringComparison Property Breeze.sharp
Determines whether String comparisons are performed according to the ANSI SQL92 specification. In particular, the ANSI standard requires padding for the character strings used in comparisons so that their lengths match before comparing them.

Namespace: Breeze.Sharp
Assembly: Breeze.Sharp (in Breeze.Sharp.dll) Version: 0.6.0.5 (0.6.0.5)
Syntax

public bool UseSql92CompliantStringComparison { get; }

Property Value

Type: Boolean
Remarks

Note that this is typically NOT enforced for operations that rely on the SQL 'Like' operator such as 'StartsWith' 'EndsWith' and 'Contains'. So, for example: "ABC" == "ABC " -> true but "ABC".StartsWith("ABC ") -> false
See Also

Reference