private bool LoadByPrimaryKeyDynamic(System.Guid guidKey) { GuidTestQuery query = new GuidTestQuery(); query.Where(query.GuidKey == guidKey); return(this.Load(query)); }
protected void InitQuery(GuidTestQuery query) { query.OnLoadDelegate = this.OnQueryLoaded; if (!query.es2.HasConnection) { query.es2.Connection = ((IEntityCollection)this).Connection; } }
public bool Load(GuidTestQuery query) { this.query = query; InitQuery(this.query); return(Query.Load()); }