Esempio n. 1
0
        private bool LoadByPrimaryKeyDynamic(System.Int32 id)
        {
            RecipientsQuery query = new RecipientsQuery();

            query.Where(query.Id == id);
            return(this.Load(query));
        }
Esempio n. 2
0
 protected void InitQuery(RecipientsQuery query)
 {
     query.OnLoadDelegate = this.OnQueryLoaded;
     if (!query.tg2.HasConnection)
     {
         query.tg2.Connection = ((IEntityCollection)this).Connection;
     }
 }
Esempio n. 3
0
 public bool Load(RecipientsQuery query)
 {
     this.query = query;
     InitQuery(this.query);
     return(Query.Load());
 }