Example #1
0
        private bool LoadByPrimaryKeyDynamic(System.Int32 theKey)
        {
            KeyNotFirstQuery query = new KeyNotFirstQuery();

            query.Where(query.TheKey == theKey);
            return(this.Load(query));
        }
Example #2
0
        protected void InitQuery(KeyNotFirstQuery query)
        {
            query.OnLoadDelegate = this.OnQueryLoaded;

            if (!query.es2.HasConnection)
            {
                query.es2.Connection = ((IEntityCollection)this).Connection;
            }
        }
Example #3
0
 public bool Load(KeyNotFirstQuery query)
 {
     this.query = query;
     InitQuery(this.query);
     return(Query.Load());
 }