ISqlHavingAndOr Interface
.NET Standard 2.x
Represents an object, that uses AND or OR logical operator and adds a search condition in the HAVING clause of a SQL statement. The return values of all methods are always the current ISqlHavingAndOr
object.
Namespace: SnapObjects.Data
Assembly: SnapObjects.Data.dll
Inherited Constructors
SnapObjects.Data.ISqlHavingAndOr<TBuilder>
SnapObjects.Data.ISqlOrderBuilder
SnapObjects.Data.ISqlBuilderBase
System.ICloneable<ISqlBuilder>
Syntax
public interface ISqlHavingAndOr : ISqlHavingAndOr<ISqlHavingAndOr>, ISqlOrderBuilder, ISqlBuilder, ISqlBuilderBase, ICloneable<ISqlBuilder>
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.