Remotion.Linq.SqlBackend.SqlGeneration.SqlStatementTextGenerator.BuildDistinctPart C# (CSharp) Метод

BuildDistinctPart() защищенный Метод

protected BuildDistinctPart ( SqlStatement sqlStatement, ISqlCommandBuilder commandBuilder ) : void
sqlStatement Remotion.Linq.SqlBackend.SqlStatementModel.SqlStatement
commandBuilder ISqlCommandBuilder
Результат void
    protected virtual void BuildDistinctPart (SqlStatement sqlStatement, ISqlCommandBuilder commandBuilder)
    {
      if (sqlStatement.IsDistinctQuery)
        commandBuilder.Append ("DISTINCT ");
    }