Exemple #1
0
 public EntityClass(DB.Database db, Type type) : base(type)
 {
     this.Database = db;
     FieldedModels = new ConcurrentDictionary <string, EntityClass>();
     this.Sqls     = new Sqls(null, this);
     FieldedModels.TryAdd("*", this);
     this.InitMembers();
 }
Exemple #2
0
 public EntityClass(DB.Database db, string membersString) : base(db, typeof(T), membersString)
 {
 }
Exemple #3
0
 public EntityClass(DB.Database db) : base(db, typeof(T))
 {
 }
Exemple #4
0
 public EntityModel(DB.Database db) : base(db, typeof(T))
 {
 }
Exemple #5
0
 protected EntityClass(DB.Database db, Type type, string membersString) : base(type)
 {
     _MembersString = membersString;
     this.Sqls      = new Sqls(membersString, this);
     this.InitMembers();
 }