Example #1
0
        private bool LoadByPrimaryKeyDynamic(System.Int32 id)
        {
            esDebitKreditQuery query = this.GetDynamicQuery();

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