public static TableSchema User(this IDialect dialect) { return(dialect.MakeSchema <User>()); }
public static TableSchema NoColumns(this IDialect dialect) { return(dialect.MakeSchema <NoColumns>()); }
public static TableSchema PropertyAllPossibleTypes(this IDialect dialect) { return(dialect.MakeSchema <PropertyAllPossibleTypes>()); }
public static TableSchema PropertyGenerated(this IDialect dialect) { return(dialect.MakeSchema <PropertyGenerated>()); }
public static TableSchema PropertyAlias(this IDialect dialect) { return(dialect.MakeSchema <PropertyAlias>()); }
public static TableSchema KeyNotGenerated(this IDialect dialect) { return(dialect.MakeSchema <KeyNotGenerated>()); }
public static TableSchema KeyExplicit(this IDialect dialect) { return(dialect.MakeSchema <KeyExplicit>()); }
public static TableSchema KeyAlias(this IDialect dialect) { return(dialect.MakeSchema <KeyAlias>()); }
public static TableSchema CompositeKeys(this IDialect dialect) { return(dialect.MakeSchema <CompositeKeys>()); }