58 references to Select
System.Data.Entity (58)
System\Data\SqlClient\SqlGen\SqlGenerator.cs (57)
1189
result.
Select
.IsDistinct = true;
1460
Debug.Assert(result.
Select
.IsEmpty);
1476
result.
Select
.Append(separator);
1477
result.
Select
.AppendLine();
1478
result.
Select
.Append(keySql);
1479
result.
Select
.Append(" AS ");
1480
result.
Select
.Append(alias);
1487
innerQuery.
Select
.Append(separator);
1488
innerQuery.
Select
.AppendLine();
1489
innerQuery.
Select
.Append(keySql);
1490
innerQuery.
Select
.Append(" AS ");
1491
innerQuery.
Select
.Append(alias);
1495
result.
Select
.Append(separator);
1496
result.
Select
.AppendLine();
1497
result.
Select
.Append(fromSymbol);
1498
result.
Select
.Append(".");
1499
result.
Select
.Append(alias);
1500
result.
Select
.Append(" AS ");
1501
result.
Select
.Append(alias);
1530
innerQuery.
Select
.Append(separator);
1531
innerQuery.
Select
.AppendLine();
1532
innerQuery.
Select
.Append(translatedAggregateArgument);
1533
innerQuery.
Select
.Append(" AS ");
1534
innerQuery.
Select
.Append(alias);
1543
result.
Select
.Append(separator);
1544
result.
Select
.AppendLine();
1545
result.
Select
.Append(aggregateResult);
1546
result.
Select
.Append(" AS ");
1547
result.
Select
.Append(alias);
1708
result.
Select
.Top = new TopClause(topCount, e.WithTies);
2263
result.
Select
.Append(VisitNewInstanceExpression(newInstanceExpression, aliasesNeedRenaming, out newColumns));
2272
result.
Select
.Append(e.Projection.Accept(this));
2411
if (filter.
Select
.IsEmpty)
2476
Debug.Assert(input.
Select
.IsEmpty);
2479
input.
Select
.Append("row_number() OVER (ORDER BY ");
2480
AddSortKeys(input.
Select
, e.SortOrder);
2481
input.
Select
.Append(") AS ");
2490
input.
Select
.Append(row_numberSymbol);
2928
result.
Select
.Top = new TopClause(1, false);
3147
if (sqlSelectStatement.
Select
.IsEmpty)
3431
selectStatement.
Select
.AddOptionalColumn(optionalColumn);
3558
selectStatement.
Select
.AddOptionalColumn(optionalColumn);
3752
if (finalizeOldStatement && oldStatement.
Select
.IsEmpty)
3975
return result.
Select
.Top == null
3982
return result.
Select
.IsEmpty
3985
&& result.
Select
.Top == null;
3988
return result.
Select
.IsEmpty
3991
&& result.
Select
.Top == null
3992
&& !result.
Select
.IsDistinct;
3996
return result.
Select
.Top == null;
4002
return result.
Select
.IsEmpty
4006
&& !result.
Select
.IsDistinct;
4009
return result.
Select
.IsEmpty
4012
&& !result.
Select
.IsDistinct;
4015
return result.
Select
.IsEmpty
4022
&& !result.
Select
.IsDistinct;
4124
if (addDefaultColumns && result.
Select
.IsEmpty)
System\Data\SqlClient\SqlGen\SqlSelectStatement.cs (1)
275
if ((null != this.orderBy) && !this.OrderBy.IsEmpty && (this.IsTopMost || this.
Select
.Top != null))