Пример #1
0
        private bool LoadByPrimaryKeyDynamic(System.Guid id)
        {
            AccountInfoQuery query = new AccountInfoQuery();

            query.Where(query.Id == id);
            return(this.Load(query));
        }
Пример #2
0
        protected void InitQuery(AccountInfoQuery query)
        {
            query.OnLoadDelegate = this.OnQueryLoaded;

            if (!query.es2.HasConnection)
            {
                query.es2.Connection = ((IEntityCollection)this).Connection;
            }
        }
Пример #3
0
 public bool Load(AccountInfoQuery query)
 {
     this.query = query;
     InitQuery(this.query);
     return(Query.Load());
 }