|
| static bool | AutoCommit (this ISession session) |
| |
| static void | AutoCommit (this ISession session, bool value) |
| |
| static void | CurrentSchema (this ISession session, string value) |
| |
| static string | CurrentSchema (this ISession session) |
| |
| static bool | IgnoreIdentifiersCase (this ISession session) |
| |
| static void | IgnoreIdentifiersCase (this ISession session, bool value) |
| |
| static QueryParameterStyle | ParameterStyle (this ISession session) |
| |
| static void | ParameterStyle (this ISession session, QueryParameterStyle value) |
| |
| static IDbObject | GetObject (this ISession session, DbObjectType objectType, ObjectName objectName) |
| |
| static IDbObject | GetObject (this ISession session, DbObjectType objectType, ObjectName objectName, AccessType accessType) |
| |
| static void | CreateObject (this ISession session, IObjectInfo objectInfo) |
| |
| static void | AlterObject (this ISession session, IObjectInfo objectInfo) |
| |
| static bool | ObjectExists (this ISession session, ObjectName objectName) |
| |
| static bool | ObjectExists (this ISession session, DbObjectType objectType, ObjectName objectName) |
| |
| static IDbObject | FindObject (this ISession session, ObjectName objectName) |
| |
| static void | DropObject (this ISession session, DbObjectType objectType, ObjectName objectName) |
| |
| static ObjectName | ResolveObjectName (this ISession session, string name) |
| |
| static ObjectName | ResolveObjectName (this ISession session, DbObjectType objectType, ObjectName objectName) |
| |
| static ObjectName | ResolveObjectName (this ISession session, ObjectName objectName) |
| |
| static ObjectName | ResolveTableName (this ISession session, ObjectName tableName) |
| |
| static ITable | GetTable (this ISession session, ObjectName tableName) |
| |
| static TableInfo | GetTableInfo (this ISession session, ObjectName tableName) |
| |
| static string | GetTableType (this ISession session, ObjectName tableName) |
| |
| static void | CreateTable (this ISession session, TableInfo tableInfo, bool temporary) |
| |
| static void | AddPrimaryKey (this ISession session, ObjectName tableName, string[] columns, ConstraintDeferrability deferred, string constraintName) |
| |
| static void | AddForeignKey (this ISession session, ObjectName table, string[] columns, ObjectName refTable, string[] refColumns, ForeignKeyAction deleteRule, ForeignKeyAction updateRule, ConstraintDeferrability deferred, String constraintName) |
| |
| static void | AddUniqueKey (this ISession session, ObjectName tableName, string[] columns, ConstraintDeferrability deferrability, string constraintName) |
| |
| static void | AddCheck (this ISession session, ObjectName tableName, SqlExpression expression, ConstraintDeferrability deferrability, string constraintName) |
| |
| static void | DropAllTableConstraints (this ISession session, ObjectName tableName) |
| |
| static int | DropTableConstraint (this ISession session, ObjectName tableName, string constraintName) |
| |
| static bool | DropTablePrimaryKey (this ISession session, ObjectName tableName, string constraintName) |
| |
| static ObjectName[] | QueryTablesRelationallyLinkedTo (this ISession session, ObjectName tableName) |
| |
| static ConstraintInfo[] | QueryTableCheckExpressions (this ISession session, ObjectName tableName) |
| |
| static ConstraintInfo | QueryTablePrimaryKey (this ISession session, ObjectName tableName) |
| |
| static ConstraintInfo[] | QueryTableUniqueKeys (this ISession session, ObjectName tableName) |
| |
| static ConstraintInfo[] | QueryTableImportedForeignKeys (this ISession session, ObjectName refTableName) |
| |
| static ConstraintInfo[] | QueryTableForeignKeys (this ISession session, ObjectName tableName) |
| |
| static void | CheckConstraintViolations (this ISession session, ObjectName tableName) |
| |
| static void | Access (this ISession session, IDbObject obj, AccessType accessType) |
| |
Definition at line 26 of file UserSessionExtensions.cs.