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); }
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); }
public MappingDataAchieve(SQL _Sql, AbstractAdo _Ado, Analysis _Analysis) { this.Ado = _Ado; this.SqlCode = _Sql; this.analysis = _Analysis; }
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) { }
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; }
public Analysis(AbstractAdo abstractAdo, DbContextType dbContextType) { this.Ado = abstractAdo; this._DbContextType = dbContextType; }
public DeleteAchieve(AbstractAdo _Ado, Analysis _Analysis) : base(_Ado, _Analysis) { }