ISqlWhereAndOr Interface
.NET Standard 2.x
Represents an object which uses the AND
or OR
logical operator and adds a search condition in the WHERE clause of a SQL statement. The return values of all methods are always the current ISqlWhereAndOr
object.
Namespace: SnapObjects.Data
Assembly: SnapObjects.Data.dll
Inherited Constructors
SnapObjects.Data.ISqlWhereAndOr<TBuilder>
SnapObjects.Data.ISqlGroupBuilder
Syntax
public interface ISqlWhereAndOr : ISqlWhereAndOr<ISqlWhereAndOr>, ISqlGroupBuilder
Remarks
AND
logical operator: Combines two conditions and evaluates to TRUE when both of the conditions are TRUE.
OR
logical operator: Combines two conditions and evaluates to TRUE when either condition is TRUE.