I'm trying to upgrade from NH3.1GA to NH3.2GA to overcome a bug that
was present in NH3.1GA. I'm trying the latest NH3.2GA-compatible
build of Fluent NHibernate with it, version 1.3.0.722.
My table name convention is no longer being honored. Instead of
looking for "tblClients" its looking for "Client":
ConventionBuilder.Class.When(
c => c.Expect(x => x.TableName, Is.Not.Set),
x => x.Table(string.Format("tbl{0}s",
x.EntityType.Name)))
Is this a known problem? If not, any tips on how I can diagnose this
issue?