GenerateSql() public static méthode

public static GenerateSql ( SqlTable sqlTable, ISqlCommandBuilder commandBuilder, ISqlGenerationStage stage, bool isFirstTable ) : void
sqlTable Remotion.Linq.SqlBackend.SqlStatementModel.SqlTable
commandBuilder ISqlCommandBuilder
stage ISqlGenerationStage
isFirstTable bool
Résultat void
        public virtual void GenerateTextForFromTable(ISqlCommandBuilder commandBuilder, SqlTable table, bool isFirstTable)
        {
            ArgumentUtility.CheckNotNull("commandBuilder", commandBuilder);
            ArgumentUtility.CheckNotNull("table", table);

            SqlTableAndJoinTextGenerator.GenerateSql(table, commandBuilder, this, isFirstTable);
        }