예제 #1
0
 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
 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
 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);
 }