|
| static int | DeleteFrom (this IQuery context, ObjectName tableName, SqlQueryExpression query) |
| |
| static int | DeleteFrom (this IQuery context, ObjectName tableName, SqlExpression expression) |
| |
| static int | DeleteFrom (this IQuery context, ObjectName tableName, SqlExpression expression, int limit) |
| |
| static int | DeleteFrom (this IQuery context, ObjectName tableName, SqlQueryExpression query, int limit) |
| |
| static int | DeleteFrom (this IQuery context, ObjectName tableName, ITable deleteSet, int limit) |
| |
| static int | UpdateTable (this IQuery context, ObjectName tableName, IQueryPlanNode queryPlan, IEnumerable< SqlAssignExpression > assignments, int limit) |
| |
| static void | InsertIntoTable (this IQuery context, ObjectName tableName, IEnumerable< SqlAssignExpression > assignments) |
| |
| static int | InsertIntoTable (this IQuery context, ObjectName tableName, IEnumerable< SqlAssignExpression[]> assignments) |
| |
| static ObjectName | ResolveTableName (this IQuery query, ObjectName tableName) |
| |
| static ObjectName | ResolveTableName (this IQuery query, string name) |
| |
| static bool | TableExists (this IQuery query, ObjectName tableName) |
| |
| static void | CreateTable (this IQuery query, TableInfo tableInfo) |
| |
| static void | CreateTable (this IQuery query, TableInfo tableInfo, bool onlyIfNotExists) |
| |
| static void | CreateTable (this IQuery query, TableInfo tableInfo, bool onlyIfNotExists, bool temporary) |
| |
| static ITableQueryInfo | GetTableQueryInfo (this IQuery context, ObjectName tableName, ObjectName alias) |
| |
| static void | DropTables (this IQuery query, IEnumerable< ObjectName > tableNames) |
| |
| static void | DropTables (this IQuery query, IEnumerable< ObjectName > tableNames, bool onlyIfExists) |
| |
| static void | DropTable (this IQuery query, ObjectName tableName) |
| |
| static void | DropTable (this IQuery query, ObjectName tableName, bool onlyIfExists) |
| |
| static void | AlterTable (this IQuery query, TableInfo tableInfo) |
| |
| static ITable | GetTable (this IQuery query, ObjectName tableName) |
| |
| static IMutableTable | GetMutableTable (this IQuery query, ObjectName tableName) |
| |
| static ITable | GetCachedTable (this IQuery query, string cacheKey) |
| |
| static void | CacheTable (this IQuery query, string cacheKey, ITable table) |
| |
| static void | ClearCachedTables (this IQuery query) |
| |
| static void | AddPrimaryKey (this IQuery query, ObjectName tableName, string[] columnNames) |
| |
| static void | AddPrimaryKey (this IQuery query, ObjectName tableName, string[] columnNames, string constraintName) |
| |
| static void | AddPrimaryKey (this IQuery query, ObjectName tableName, string columnName) |
| |
| static void | AddPrimaryKey (this IQuery query, ObjectName tableName, string columnName, string constraintName) |
| |
| static void | AddForeignKey (this IQuery query, ObjectName table, string[] columns, ObjectName refTable, string[] refColumns, ForeignKeyAction deleteRule, ForeignKeyAction updateRule, String constraintName) |
| |
| static void | AddForeignKey (this IQuery query, ObjectName table, string[] columns, ObjectName refTable, string[] refColumns, ForeignKeyAction deleteRule, ForeignKeyAction updateRule, ConstraintDeferrability deferred, String constraintName) |
| |
| static void | AddUniqueKey (this IQuery query, ObjectName tableName, string[] columns) |
| |
| static void | AddUniqueKey (this IQuery query, ObjectName tableName, string[] columns, string constraintName) |
| |
| static void | AddUniqueKey (this IQuery query, ObjectName tableName, string[] columns, ConstraintDeferrability deferrability) |
| |
| static void | AddUniqueKey (this IQuery query, ObjectName tableName, string[] columns, ConstraintDeferrability deferrability, string constraintName) |
| |
| static void | AddCheck (this IQuery query, ObjectName tableName, SqlExpression expression, string constraintName) |
| |
| static void | AddCheck (this IQuery query, ObjectName tableName, SqlExpression expression, ConstraintDeferrability deferred, string constraintName) |
| |
| static void | DropAllTableConstraints (this IQuery query, ObjectName tableName) |
| |
| static int | DropConstraint (this IQuery query, ObjectName tableName, string constraintName) |
| |
| static void | AddConstraint (this IQuery query, ObjectName tableName, ConstraintInfo constraintInfo) |
| |
| static bool | DropPrimaryKey (this IQuery query, ObjectName tableName, string constraintName) |
| |
| static void | CheckConstraints (this IQuery query, ObjectName tableName) |
| |
| static ConstraintInfo[] | GetTableCheckExpressions (this IQuery query, ObjectName tableName) |
| |
| static ConstraintInfo[] | GetTableImportedForeignKeys (this IQuery query, ObjectName tableName) |
| |
| static ConstraintInfo[] | GetTableForeignKeys (this IQuery query, ObjectName tableName) |
| |
| static ConstraintInfo | GetTablePrimaryKey (this IQuery query, ObjectName tableName) |
| |
| static ConstraintInfo[] | GetTableUniqueKeys (this IQuery query, ObjectName tableName) |
| |
Definition at line 28 of file QueryExtensions.Commands.cs.