Is it possible to persist an IList<DayOfWeek>
using nHibernate?
public class Vendor
{
public virtual IList<DayOfWeek> OrderDays { get; private set; }
}
If not, what are some common solutions; creating a class for OrderDays?, using an IList<string>
?