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