1 override of IsEmpty
System.Data.Entity (1)
System\Data\SqlClient\SqlGen\SqlSelectClauseBuilder.cs (1)
71public override bool IsEmpty
16 references to IsEmpty
System.Data.Entity (16)
System\Data\SqlClient\SqlGen\SqlGenerator.cs (11)
2245else if ((this.SqlVersion == SqlVersion.Sql8) && !result.OrderBy.IsEmpty) 3979&& result.OrderBy.IsEmpty; 3983&& result.Where.IsEmpty 3984&& result.GroupBy.IsEmpty 3989&& result.GroupBy.IsEmpty 3990&& result.OrderBy.IsEmpty 4003&& result.GroupBy.IsEmpty 4010&& result.GroupBy.IsEmpty 4011&& result.OrderBy.IsEmpty 4016&& result.GroupBy.IsEmpty 4017&& result.OrderBy.IsEmpty
System\Data\SqlClient\SqlGen\SqlSelectClauseBuilder.cs (2)
73get { return (base.IsEmpty) && (this.m_optionalColumns == null || this.m_optionalColumns.Count == 0); } 126if (!base.IsEmpty)
System\Data\SqlClient\SqlGen\SqlSelectStatement.cs (3)
261if ((null != this.where) && !this.Where.IsEmpty) 268if ((null != this.groupBy) && !this.GroupBy.IsEmpty) 275if ((null != this.orderBy) && !this.OrderBy.IsEmpty && (this.IsTopMost || this.Select.Top != null))