Apart from Fabio Maulo's few blog posts, are there any other sites with examples and/or documentation on the new NHibernate 3.2 mapping by code feature?

link|improve this question

59% accept rate
feedback

7 Answers

up vote 32 down vote accepted

I'm already trying to fill that hole in mapping-by-code documentation and examples with the series of posts on my blog. I'm trying to see what is supported and to compare mapping-by-code possibilities with Fluent NHibernate. Here are the posts:

  1. First impressions
  2. Naming convention resembling Fluent
  3. Property
  4. Component
  5. ManyToOne
  6. inheritance
  7. dynamic component
  8. Set and Bag
  9. OneToMany and other collection-based relation types
  10. concurrency
  11. OneToOne
  12. Join
  13. Any
  14. List, Array, IdBag
  15. Map
  16. Id, NaturalId
  17. composite identifiers
  18. entity-level mappings
  19. the summary
link|improve this answer
Thanks, that's a really helpful set of posts, both for the syntax comparisons with FNH, and for the opinions you add. – David Feb 3 at 21:27
Incredibly good set of posts. Thanks for the info! – tom.dietrich Mar 8 at 20:55
feedback

There is also an example at http://kazimanzurrashid.com/posts/nhibernate-built-in-code-based-mapping-instead-of-using-fluent-nhibernate that I found useful to implement ManyToOne mappings, hopefully there will be some documentation soon!

link|improve this answer
feedback

Here is detailed manual with good examples http://x-driven.blogspot.com/2011/12/nhibernate-mapping-by-code.html

link|improve this answer
feedback

I've spent some time to compile the available information about the built-in auto-mapping feature of the NHibernate 3.2 for those who want to migrate their projects from fluent NHibernate mapping to the new mapping-by-code capability. You can download the source codes of this sample from here:

NHibernate 3.2 Auto-Mapping Sample

It shows how to:

  • Configure NH 3.2 dialects and drivers by code.
  • Integrate NHibernate Validator with NH 3.2.
  • Use NHibernate Validator to set the length of the produced database fields automatically.
  • Add naming conventions.
  • Add many-to-many support for the new auto-mapping capability.
  • Override auto-mapping conventions and for example add unique attribute to some of the produced fields.
  • Serialize mappings definitions and configurations to a file to improve the application's startup time.
link|improve this answer
feedback

No, there aren't (that I've seen at least)

Remember this is an unreleased feature, only available in alphas so far (as of 25-Apr-2011)

link|improve this answer
feedback

Take a look at the source code for Lesson 13 - NHibernate Mapping by Code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.