Esempio n. 1
0
 public BaseDao(ConnectionStringSettings settings)
 {
     DbContext = new AZLinContext(settings);
 }
Esempio n. 2
0
 public JoinQuery(AZLinContext db, bool withAlias) : this(db)
 {
     this.WithAlias = withAlias;
 }
Esempio n. 3
0
 public BaseDao()
 {
     DbContext = new AZLinContext();
 }
Esempio n. 4
0
 public JoinQuery(AZLinContext db) : this()
 {
     DbContext = db;
 }