Example #1
0
        private bool LoadByPrimaryKeyDynamic(System.Guid guidKeyAlias)
        {
            NamingTestQuery query = new NamingTestQuery();

            query.Where(query.GuidKeyAlias == guidKeyAlias);
            return(this.Load(query));
        }
Example #2
0
        protected void InitQuery(NamingTestQuery query)
        {
            query.OnLoadDelegate = this.OnQueryLoaded;

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