.Net 4.0 adds support for a new datatype which I would love to be able to work with using NHibernate - The Tuple. I imagine that there is currently no way to map this type?
Take the following example: public virtual IList<Tuple<String, float, UnitOfMeasure>> Measurements { get; set; } You can read the documentation on the tuple datatype here: http://msdn.microsoft.com/en-us/library/system.tuple(VS.100).aspx If there is currently no way of doing it, could someone point me in the right direction as far as how to start hacking nhibernate to support this? Thank you Brian