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
Frederik is correct, NHibernate already does this.
var data = query.List();
This would result in an IList of the type you specified. In this case IList.