private bool LoadByPrimaryKeyDynamic(System.Int32 id) { ShippingServiceRateQuery query = new ShippingServiceRateQuery(); query.Where(query.Id == id); return(this.Load(query)); }
protected void InitQuery(ShippingServiceRateQuery query) { query.OnLoadDelegate = this.OnQueryLoaded; if (!query.es2.HasConnection) { query.es2.Connection = ((IEntityCollection)this).Connection; } }
internal void DeleteAllRates() { var q = new ShippingServiceRateQuery(); q.Where(q.RateTypeId == this.Id); var collection = new ShippingServiceRateCollection(); collection.Load(q); collection.MarkAllAsDeleted(); collection.Save(); }
public bool Load(ShippingServiceRateQuery query) { this.query = query; InitQuery(this.query); return(Query.Load()); }