I build my SessionFactory like this:
_configuration = LoadConfiguration(configFile);
if (_configuration == null)
{
Fluently.Configure()
.Database(configurer.GetConfigurer())
.Mappings(m => m.AutoMappings
.Add(AutoMap
.AssemblyOf<Entity>()
.IgnoreBase<Entity>()))
.ExposeConfiguration(cfg => _configuration = cfg)
.BuildConfiguration();
ConfigureNhibernateValidator();
SaveConfiguration(configFile);
}
UpdateSchema();
Where my schemaupdater is like this:
public bool UpdateSchema(ISession session = null)
{
try
{
SchemaValidator val = new SchemaValidator(_configuration, new Settings());
val.Validate();
return false;
}
catch
{
SchemaExport export = new SchemaExport(_configuration);
if (session == null) // To be usefull with SQLite InMemory db
export.Execute(true, true, false);
else
export.Execute(true, true, false, session.Connection, null);
return true;
}
}
And my validator configurator is like this:
private void ConfigureNhibernateValidator()
{
var provider = new NHibernateSharedEngineProvider();
NHibernate.Validator.Cfg.Environment.SharedEngineProvider = provider;
var nhvConfiguration = new NHibernate.Validator.Cfg.Loquacious.FluentConfiguration();
nhvConfiguration
.SetDefaultValidatorMode(ValidatorMode.OverrideAttributeWithExternal)
.Register(Assembly.GetAssembly(typeof(Entity))
.ValidationDefinitions())
.IntegrateWithNHibernate
.ApplyingDDLConstraints()
.RegisteringListeners();
ValidatorEngine validatorEngine = provider.GetEngine();
validatorEngine.Configure(nhvConfiguration);
ValidatorInitializer.Initialize(_configuration, validatorEngine);
}
I've annotated some of my clr object-properties with NotNull, Length(1024) etc. This gets exported fine to my database. When I change something in my Entity assembly my LoadConfiguration method returns null, and a new configuration is generated.
My problem is that if I change Length(1024) to Length(2048), an attribute which affects schema, the SchemaValidator.validate call doesn't throw an exception, and so my database isn't updated to reflect the new schema. Which leads me to my question...
How can I find out that my database needs an update to reflect my Validation annotations?