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