Luka
Luka

Reputation: 4211

NHibernate 3.2 Mapping by convention (code) stored procedure

How can I map a stored procedure using mapping by convention or mapping by code?

If it is not possible then how to map it by hbm and include it into configuration done by Mapping by convention?

Upvotes: 2

Views: 5314

Answers (1)

Rippo
Rippo

Reputation: 22424

Nhibernate 3.2 allows you to mix your mappings; that is you can use the mapping by code syntax and still have your old hbm.xml files.

See this blog post to find out how.

For mapping a stored procedure then I recommend reading this nhibernate.info Blog post.

Upvotes: 1

Related Questions