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
Just to answer my own question, the answer is no other than you can write xml mapppings for NHibernate and combine them with Fluent-NHibernate mappings. SP mapping for FNH will most likely be added later.
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.