private bool LoadByPrimaryKeyDynamic(System.String id)
        {
            OracleXmlTestQuery query = new OracleXmlTestQuery();

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

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