|
| 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 IQueryContext context, ObjectName tableName) |
| |
| static ObjectName | ResolveTableName (this IQueryContext context, string name) |
| |
| static bool | TableExists (this IQueryContext context, ObjectName tableName) |
| |
| static void | CreateTable (this IQueryContext context, TableInfo tableInfo) |
| |
| static void | CreateTable (this IQueryContext context, TableInfo tableInfo, bool onlyIfNotExists) |
| |
| static void | CreateTable (this IQueryContext context, TableInfo tableInfo, bool onlyIfNotExists, bool temporary) |
| |
| static void | DropTables (this IQueryContext context, IEnumerable< ObjectName > tableNames) |
| |
| static void | DropTables (this IQueryContext context, IEnumerable< ObjectName > tableNames, bool onlyIfExists) |
| |
| static void | DropTable (this IQueryContext context, ObjectName tableName) |
| |
| static void | DropTable (this IQueryContext context, ObjectName tableName, bool onlyIfExists) |
| |
| static void | AlterTable (this IQueryContext context, TableInfo tableInfo) |
| |
| static ITable | GetTable (this IQueryContext context, ObjectName tableName) |
| |
| static IMutableTable | GetMutableTable (this IQueryContext context, ObjectName tableName) |
| |
| static ITable | GetCachedTable (this IQueryContext context, string cacheKey) |
| |
| static void | CacheTable (this IQueryContext context, string cacheKey, ITable table) |
| |
| static void | ClearCachedTables (this IQueryContext context) |
| |
| static void | AddPrimaryKey (this IQueryContext context, ObjectName tableName, string[] columnNames) |
| |
| static void | AddPrimaryKey (this IQueryContext context, ObjectName tableName, string[] columnNames, string constraintName) |
| |
| static void | AddPrimaryKey (this IQueryContext context, ObjectName tableName, string columnName) |
| |
| static void | AddPrimaryKey (this IQueryContext context, ObjectName tableName, string columnName, string constraintName) |
| |
| static void | AddForeignKey (this IQueryContext context, ObjectName table, string[] columns, ObjectName refTable, string[] refColumns, ForeignKeyAction deleteRule, ForeignKeyAction updateRule, String constraintName) |
| |
| static void | AddForeignKey (this IQueryContext context, ObjectName table, string[] columns, ObjectName refTable, string[] refColumns, ForeignKeyAction deleteRule, ForeignKeyAction updateRule, ConstraintDeferrability deferred, String constraintName) |
| |
| static void | AddUniqueKey (this IQueryContext context, ObjectName tableName, string[] columns) |
| |
| static void | AddUniqueKey (this IQueryContext context, ObjectName tableName, string[] columns, string constraintName) |
| |
| static void | AddUniqueKey (this IQueryContext context, ObjectName tableName, string[] columns, ConstraintDeferrability deferrability) |
| |
| static void | AddUniqueKey (this IQueryContext context, ObjectName tableName, string[] columns, ConstraintDeferrability deferrability, string constraintName) |
| |
| static void | AddCheck (this IQueryContext context, ObjectName tableName, SqlExpression expression, string constraintName) |
| |
| static void | AddCheck (this IQueryContext context, ObjectName tableName, SqlExpression expression, ConstraintDeferrability deferred, string constraintName) |
| |
| static void | DropAllTableConstraints (this IQueryContext context, ObjectName tableName) |
| |
| static int | DropConstraint (this IQueryContext context, ObjectName tableName, string constraintName) |
| |
| static void | AddConstraint (this IQueryContext context, ObjectName tableName, ConstraintInfo constraintInfo) |
| |
| static bool | DropPrimaryKey (this IQueryContext context, ObjectName tableName, string constraintName) |
| |
| static void | CheckConstraints (this IQueryContext context, ObjectName tableName) |
| |
| static ConstraintInfo[] | GetTableCheckExpressions (this IQueryContext context, ObjectName tableName) |
| |
| static ConstraintInfo[] | GetTableImportedForeignKeys (this IQueryContext context, ObjectName tableName) |
| |
| static ConstraintInfo[] | GetTableForeignKeys (this IQueryContext context, ObjectName tableName) |
| |
| static ConstraintInfo | GetTablePrimaryKey (this IQueryContext context, ObjectName tableName) |
| |
| static ConstraintInfo[] | GetTableUniqueKeys (this IQueryContext context, ObjectName tableName) |
| |