something like this:
mapper.Class<MyDomainObject>(map => map.Property(s => s.TermService,
pm => pm.Column(cm => cm.Default(0))));
I noticed however that if you want to set the default value of a
string property you need to escape the string twice i.e:
cm.Default("'my default value'")