public IMultiQuery Add <T>(string key, string hql) { AddEntry(new QueryEntry(key, ShardedQueryImpl.CreateQuery(this.session, hql), () => new List <T>())); return(this); }
public IMultiQuery Add(string hql) { AddEntry(new QueryEntry(ShardedQueryImpl.CreateQuery(this.session, hql), () => new ArrayList())); return(this); }