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