private bool LoadByPrimaryKeyDynamic(System.Int64 constructorTestId)
        {
            ConstructorTestQuery query = new ConstructorTestQuery();

            query.Where(query.ConstructorTestId == constructorTestId);
            return(this.Load(query));
        }
        protected void InitQuery(ConstructorTestQuery query)
        {
            query.OnLoadDelegate = this.OnQueryLoaded;

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