versioning in Fluent NHibernate
Posted
by csetzkorn
on Stack Overflow
See other posts from Stack Overflow
or by csetzkorn
Published on 2010-04-26T11:54:19Z
Indexed on
2010/04/26
12:03 UTC
Read the original article
Hit count: 320
fluent-nhibernate
In my NHibernate mapping files I used:
<version name="Version" column="Version" />
to implement versioning. How do I achieve this using fnhibernate?
What should go in here?
public class blaMap : IAutoMappingOverride<bla>
{
public void Override(AutoMapping<bla> mapping)
{
????
}
}
thanks.
christian
© Stack Overflow or respective owner