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