private bool LoadByPrimaryKeyDynamic(System.Int32 employeeID, System.String territoryID) { EmployeeTerritoriesQuery query = new EmployeeTerritoriesQuery(); query.Where(query.EmployeeID == employeeID, query.TerritoryID == territoryID); return(this.Load(query)); }
protected void InitQuery(EmployeeTerritoriesQuery query) { query.OnLoadDelegate = this.OnQueryLoaded; if (!query.es2.HasConnection) { query.es2.Connection = ((IEntityCollection)this).Connection; } }
public bool Load(EmployeeTerritoriesQuery query) { this.query = query; InitQuery(this.query); return(Query.Load()); }
public EmployeeTerritoriesQuery(string joinAlias, out EmployeeTerritoriesQuery query) { query = this; this.es.JoinAlias = joinAlias; }