コード例 #1
0
ファイル: TypeConfig.cs プロジェクト: Raimusoft/FoxDb
 public static ITypeSelector By(PropertyInfo property)
 {
     return(TypeSelector.By(property));
 }
コード例 #2
0
ファイル: TypeConfig.cs プロジェクト: Raimusoft/FoxDb
 public static ITypeSelector By(DbType?type = null, int?size = null, byte?precision = null, byte?scale = null, bool?isNullable = null)
 {
     return(TypeSelector.By(type, size, precision, scale, isNullable));
 }