コード例 #1
0
 public static TableSchema User(this IDialect dialect)
 {
     return(dialect.MakeSchema <User>());
 }
コード例 #2
0
 public static TableSchema NoColumns(this IDialect dialect)
 {
     return(dialect.MakeSchema <NoColumns>());
 }
コード例 #3
0
 public static TableSchema PropertyAllPossibleTypes(this IDialect dialect)
 {
     return(dialect.MakeSchema <PropertyAllPossibleTypes>());
 }
コード例 #4
0
 public static TableSchema PropertyGenerated(this IDialect dialect)
 {
     return(dialect.MakeSchema <PropertyGenerated>());
 }
コード例 #5
0
 public static TableSchema PropertyAlias(this IDialect dialect)
 {
     return(dialect.MakeSchema <PropertyAlias>());
 }
コード例 #6
0
 public static TableSchema KeyNotGenerated(this IDialect dialect)
 {
     return(dialect.MakeSchema <KeyNotGenerated>());
 }
コード例 #7
0
 public static TableSchema KeyExplicit(this IDialect dialect)
 {
     return(dialect.MakeSchema <KeyExplicit>());
 }
コード例 #8
0
 public static TableSchema KeyAlias(this IDialect dialect)
 {
     return(dialect.MakeSchema <KeyAlias>());
 }
コード例 #9
0
 public static TableSchema CompositeKeys(this IDialect dialect)
 {
     return(dialect.MakeSchema <CompositeKeys>());
 }