private bool LoadByPrimaryKeyDynamic(System.Int32 testId)
        {
            DefaultTestQuery query = new DefaultTestQuery();

            query.Where(query.TestId == testId);
            return(this.Load(query));
        }
        protected void InitQuery(DefaultTestQuery query)
        {
            query.OnLoadDelegate = this.OnQueryLoaded;

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