How do I make NHibernate.Tool.hbm2ddl.SchemaExport to export certain classes in one database, and certain in another one? E.g. Person class should be mapped to a database with one connection string, and Product should be saved to a different database, so SchemaExport should create a Person table in one DB, and a Product table in the second one.
I defined NHibernate mappings for my classes, but I don't know where to specify the database/connection string for each class separately.