.net - XML Document straight to Stored Proc Mapping in NHibernate -


I am creating a mechanism for taking XML data from a queue and saving data directly from the XML document Calling stored procs seems like something that could address NHibernate for the database, but most of the information that I discuss about going from database to database rather than object data (XML, in this case). Is there a way to use NHibernate in this method or am I barking the wrong tree?

Thank you.

I think NH is not the right tool for this, its purpose is to map classes in a relational database. As long as you do not distribute XML to the object model and mapping the NH to the database, you can not take much advantage from it.


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -