Beispiel #1
0
 public QueryAchieve(SQL _Sql, AbstractAdo _Ado, Analysis _Analysis)
 {
     this.Ado             = _Ado;
     this.SqlCode         = _Sql;
     this.analysis        = _Analysis;
     this.SqlCode.IsAlias = false;
     this.analysis.CreateQuery <T>(this.SqlCode);
 }
Beispiel #2
0
 public QueryAchieve(SQL _Sql, AbstractAdo _Ado, Analysis _Analysis)
 {
     this.Ado             = _Ado;
     this.SqlCode         = _Sql;
     this.analysis        = _Analysis;
     this.SqlCode.IsAlias = true;
     this.analysis.CreateQuery <T>(this.SqlCode);
     this._MappingDataAchieve = new MappingDataAchieve <T>(_Sql, _Ado, _Analysis);
 }
Beispiel #3
0
 public MappingDataAchieve(SQL _Sql, AbstractAdo _Ado, Analysis _Analysis)
 {
     this.Ado      = _Ado;
     this.SqlCode  = _Sql;
     this.analysis = _Analysis;
 }
Beispiel #4
0
 public Analysis(AbstractAdo abstractAdo, string lastInsertId, DbContextType dbContextType)
 {
     this.Ado            = abstractAdo;
     this.LastInsertId   = lastInsertId;
     this._DbContextType = dbContextType;
 }
 public UpdateAchieve(MemberInitExpression _Set, AbstractAdo _Ado, Analysis _Analysis)
     : base(_Set, _Ado, _Analysis)
 {
 }
Beispiel #6
0
 public SelectAchieve(SQL _Sql, AbstractAdo _Ado, Analysis _Analysis)
 {
     this.Ado      = _Ado;
     this.SqlCode  = _Sql;
     this.analysis = _Analysis;
 }
 public InsertAchieve(MemberInitExpression _Set, AbstractAdo _Ado, Analysis _Analysis, string _LastInsertId)
     : base(_Set, _Ado, _Analysis)
 {
     this.LastInsertId = _LastInsertId;
 }
Beispiel #8
0
 public Analysis(AbstractAdo abstractAdo, DbContextType dbContextType)
 {
     this.Ado            = abstractAdo;
     this._DbContextType = dbContextType;
 }
Beispiel #9
0
 public DeleteAchieve(AbstractAdo _Ado, Analysis _Analysis)
     : base(_Ado, _Analysis)
 {
 }