コード例 #1
0
        private bool LoadByPrimaryKeyDynamic(System.Int32 id)
        {
            ShippingServiceRateQuery query = new ShippingServiceRateQuery();

            query.Where(query.Id == id);
            return(this.Load(query));
        }
コード例 #2
0
        protected void InitQuery(ShippingServiceRateQuery query)
        {
            query.OnLoadDelegate = this.OnQueryLoaded;

            if (!query.es2.HasConnection)
            {
                query.es2.Connection = ((IEntityCollection)this).Connection;
            }
        }
コード例 #3
0
        internal void DeleteAllRates()
        {
            var q = new ShippingServiceRateQuery();

            q.Where(q.RateTypeId == this.Id);

            var collection = new ShippingServiceRateCollection();

            collection.Load(q);

            collection.MarkAllAsDeleted();
            collection.Save();
        }
コード例 #4
0
 public bool Load(ShippingServiceRateQuery query)
 {
     this.query = query;
     InitQuery(this.query);
     return(Query.Load());
 }