private bool LoadByPrimaryKeyDynamic(System.Int32 id)
        {
            ProductFieldChoiceQuery query = new ProductFieldChoiceQuery();

            query.Where(query.Id == id);
            return(this.Load(query));
        }
        protected void InitQuery(ProductFieldChoiceQuery query)
        {
            query.OnLoadDelegate = this.OnQueryLoaded;

            if (!query.es2.HasConnection)
            {
                query.es2.Connection = ((IEntityCollection)this).Connection;
            }
        }
 public bool Load(ProductFieldChoiceQuery query)
 {
     this.query = query;
     InitQuery(this.query);
     return(Query.Load());
 }