Ejemplo n.º 1
0
        private bool LoadByPrimaryKeyDynamic(System.Int64 id)
        {
            esRabQuery query = this.GetDynamicQuery();

            query.Where(query.Id == id);
            return(query.Load());
        }
Ejemplo n.º 2
0
 protected void InitQuery(esRabQuery query)
 {
     query.OnLoadDelegate = this.OnQueryLoaded;
     query.es2.Connection = ((IEntityCollection)this).Connection;
 }