Hi,
I would be interested in hearing op opinions from others regarding whether which they would choose (no 'neithers' please ;), and why.
What are the downsides to using fluent? (version dependancy maybe?) Pros, Cons, Experiences etc.
Thanks!
|
1
|
Hi, I would be interested in hearing op opinions from others regarding whether which they would choose (no 'neithers' please ;), and why. What are the downsides to using fluent? (version dependancy maybe?) Pros, Cons, Experiences etc. Thanks!
|
||
|
|
|
|
Fluent NHIbernate sits on top of NHibernate, so its not really a choice between the two. If youre going to use NHibernate, CHOOSE to use Fluent NH on top of it to save yourself vast amounts of effort. Fluent NHibernate is awesome, I wouldn't use NHibernate without it. You can fluently map all youy entities (giving you compile time checking, and automated testing support) instead of having to maintain cumbersome xml files and remember their syntax/DTD. It can also automatically map your entities based on default and/or your own custom conventions. Just use it! |
||||
|
|
|
The advantage of using Fluent NHibernate together with NHibernate is that you get compile time errors if you have messed up your mapping, instead of runtime errors. You also get a much better experience when refactoring your code, since your mappings are kept up to date as you rename properties or whatever, instead of having to remember to manually modify you XML mapping files. The biggest downside of Fluent NHibernate is that it is still in a quite early phase of its development, and there is quite a big risk of breaking changes as the development of the framework progresses. |
||
|
|
|
|
Personally I havent really gotten much into fluent nhibernate as I am comfortable with the mapping files. using visual studio to create the mapping files is a breeze and you can set the schema for the xml file which gives you intellisense on the the mapping file. I agree that having compile-time syntax checking is an advantage to using fluent-nhibernate, but I struggle justifing learning the fluent API when I already am familiar with the XML mapping. Perhaps I should just get over my lethergy and learn it already... :-) |
||
|
|
|
|
I would definitely say go with fluent-nhibernate. Just be aware it may not necessarily be as smooth a ride as you would hope.
|
||
|