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