private bool LoadByPrimaryKeyDynamic(System.Int32 id) { RecipientsQuery query = new RecipientsQuery(); query.Where(query.Id == id); return(this.Load(query)); }
protected void InitQuery(RecipientsQuery query) { query.OnLoadDelegate = this.OnQueryLoaded; if (!query.tg2.HasConnection) { query.tg2.Connection = ((IEntityCollection)this).Connection; } }
public bool Load(RecipientsQuery query) { this.query = query; InitQuery(this.query); return(Query.Load()); }