I have class that wants an IList, but I have a Systems.Collection.IList, coming from an NHibernate quere.
IList
Systems.Collection.IList
I want to create a method th
No need for use Linq in this case (OfType() or .Cast). NHibernate implementation is enough.
You just have to use:
var results= query.List();
Instead of
var results= query.List<>();