I'm using NHibernate to retrieve a list from the database based on some criteria.
List<MyType> myList = GetByCriteria(...)
Does anyone know whether myList will be null or an empty list of MyType if no results are found that match the criteria?
I've been looking through the NHibernate documentation and searching in google but I can't find anything that tells me one way or another.