i'm working with a legacy database which stores month and year of a date in two string columns. LINQ to NHibernate doesn't support
type conversion inside a query and strings can't be compared with <= or >=. So i want to define a transient property in my entity
class wich returns a DateTime from the two string columns. Nevertheless how i define it (virtual, non virtual) i get a
ConfigurationException from FluentNHibernate. When i defne a method which returns the date LINQ To NHibernate throws an exception.
Is there any way to tell FluentNhibernate not to map a property to a database
column?
Regards
Klaus
--
You received this message because you are subscribed to the Google Groups "Fluent
NHibernate" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/fluent-nhibernate?hl=en.