コード例 #1
0
ファイル: DbModelClasses.cs プロジェクト: kouweizhong/vita
 public DbCustomTypeInfo(DbModel model, string schema, string name, DbCustomTypeKind kind = DbCustomTypeKind.Unknown)
     : base(model, schema, DbObjectType.UserDefinedType)
 {
     Name     = name;
     Kind     = kind;
     FullName = model.Driver.FormatFullName(Schema, Name);
 }
コード例 #2
0
ファイル: DbModelClasses.cs プロジェクト: radtek/vita
 public DbCustomTypeInfo(DbModel model, string schema, string name, DbCustomTypeKind kind, bool isNullable, int size)
     : base(model, schema, DbObjectType.UserDefinedType)
 {
     Name       = name;
     Kind       = kind;
     IsNullable = isNullable;
     Size       = size;
     FullName   = model.FormatFullName(Schema, Name);
     model.AddCustomType(this);
 }
コード例 #3
0
ファイル: DbModelClasses.cs プロジェクト: yuanfei05/vita
 public DbCustomTypeInfo(DbModel model, string schema, string name, DbCustomTypeKind kind = DbCustomTypeKind.Unknown)
     : base(model, schema, DbObjectType.UserDefinedType)
 {
     Name = name;
       Kind = kind;
       FullName = model.Driver.GetFullName(Schema, Name);
 }