vote up 6 vote down star
5

Are there any free tools to help simplify working with an NHibernate project in .NET 3.5? Primarily, I'm looking for some kind of code and config file generator to automate some of the more tedious parts of working with NHibernate.

flag

7 Answers

vote up 6 vote down check

Fluent-NHibernate presents an alternative way of writing your mapping, that for example is more refactor friendly than the standard XML approach.

Example:

public CustomerMap : ClassMap<Customer>
{
  public CustomerMap()
  {
    Id(x => x.ID);
    Map(x => x.Name);
    Map(x => x.Credit);
    HasMany<Product>(x => x.Products)
      .AsBag();
    Component<Address>(x => x.Address, m =>  
    {  
        m.Map(x => x.AddressLine1);  
        m.Map(x => x.AddressLine2);  
        m.Map(x => x.CityName);  
        m.Map(x => x.CountryName);  
    });
}
link|flag
I like that. Thanks for mentioning it. – Jason Baker Nov 11 '08 at 12:42
I think this'll be what I'm going to go with. I really hate dealing with XML files. – Jason Baker Nov 15 '08 at 19:42
Glad I could help! – Erik Öjebo Nov 15 '08 at 22:29
vote up 3 vote down

ActiveWriter is a plugin to Visual Studio that generates some files for NHibernate, but I haven't had a chance to dig into it yet.

link|flag
vote up 2 vote down

MyGeneration has some nHibernate tempates for code generation.

There used to be some for the free version of Code-Smith too, but I don't think they have been updated in a while.

link|flag
vote up 2 vote down

NHibernate Query Analyzer is a must for constructing queries. It's not for configuration, I know, but a must when trying to get your head around HQL.

link|flag
vote up 2 vote down

What about an active record implementation with attribute-based definition on top of nhibernate?

link|flag
I was actually just looking at that. :) – Jason Baker Nov 10 '08 at 15:49
vote up 1 vote down

Keep an eye out for Oren (Ayende)'s NHhibernate Profiler:

http://ayende.com/Blog/archive/2008/11/04/nh-prof-a-guided-tour.aspx

It is not yet released but it looks very promising.

link|flag
vote up 2 vote down

David Hayden has put together T4 Templates that generate sample Fluent NHibernate Mapping Classes.

http://codebetter.com/blogs/david.hayden/archive/2008/12/14/t4-templates-for-fluent-nhibernate.aspx

link|flag

Your Answer

Get an OpenID
or

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