Reputation: 2317
Hello everybody I have a LINQ declaration like this :
var query = from foo in NHibernate_Helper.session.Linq<TheType>() select foo;
Is it possible to store TheType into a variable to dynamically define this one ?
Thank you by advance
Upvotes: 2
Views: 228
Reputation: 12938
This doesn't do exactly what you asked, but can you just make your method generic?
public IEnumerable<T> GetSomething<T>()
{
return (from foo in NHibernate_Helper.session.Linq<T>() select foo);
}
...
GetSomething<TheType>();
Upvotes: 3