示例#1
0
        private bool LoadByPrimaryKeyDynamic(System.Int32 id)
        {
            esLevelMAQuery query = this.GetDynamicQuery();

            query.Where(query.Id == id);
            return(query.Load());
        }
示例#2
0
 protected void InitQuery(esLevelMAQuery query)
 {
     query.OnLoadDelegate = this.OnQueryLoaded;
     query.es2.Connection = ((IEntityCollection)this).Connection;
 }