Пример #1
0
        private void AppendIdentifier(EntitySet table, Action <string> AppendIdentifierEscape)
        {
            string schemaName = SqlDdlBuilder.GetSchemaName(table);
            string tableName  = SqlDdlBuilder.GetTableName(table);

            if (schemaName != null)
            {
                AppendIdentifierEscape(schemaName);
                this.AppendSql(".");
            }
            AppendIdentifierEscape(tableName);
        }