Anyone know of any decent resources on Stored Procedures for Fluent Nhibernate 1.1
A recent release of Fluent Nhibernate (1.1) now supports stored procedures. I was wondering if anyone out there has found any good blog articles on how to do this!
I am not asking about using classic hbm mappings instead which these questions previously asked:开发者_如何学运维
Does Fluent-NHibernate support mapping to procedures?
Fluent NHibernate and Stored Procedures
The documentation via the following links I cannot seem to access:
http://support.fluentnhibernate.org/discussions/help/18-stored-procedure John Peterson's blog entry does not seem to work either.
Any help would be greatly appreciated. I guess in the interim I could use the old hbm mapping approach - but I'd rather use fluent nhibernate if I can.
Maybe this will help you a bit:
Unfortunately the current support for using stored procedures is via the SqlInsert, SqlUpdate, SqlDelete methods. None of those are applicable to using a stored procedure to a do a select.
http://support.fluentnhibernate.org/discussions/help/172-stored-procedures-in-fluentnhibernate-11
精彩评论