Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Generate XML mappings from fluent Nhibernate

How do I generate xml mappings files as part of my tests in MappingIntegrationTests

I need to manually check if the fluent mappings correlate to the mappings in the leagcy project.

like image 848
Quintin Par Avatar asked Jan 10 '10 05:01

Quintin Par


1 Answers

You can do something like:

 config.Mappings(m => 
    {
        m.FluentMappings.ExportTo("...file path here...");
        m.HbmMappings.ExportTo("...file path here...");
        m.AutoMappings.ExportTo("...file path here...");
    {
);

I don't like it myself. If I find some better way (if such exists at all) I'll update the answer.

See
http://blog.jagregory.com/2009/02/03/fluent-nhibernate-configuring-your-application/
Or if broken, see this instead
https://github.com/jagregory/fluent-nhibernate/wiki/Database-configuration

like image 113
Meligy Avatar answered Oct 05 '22 15:10

Meligy