I\'ve been wondering if it\'s possible to have Fluent-NHibernate communicate with stored procedures that already exist and assign mapping from the result set to my own domain ob
The trunk version of Fluent NHibernate (on GitHub) supports insert, update and delete stored procedures.
In your mapping class constructor, call:
SqlInsert("StoredProcName");
Disclaimer: I haven't tested this myself yet, but it certainly will come in handy soon.
For more info see this thread in the Fluent NHibernate Google Group.