Browse by Tags

NHibernate LINQ is out!
Sun, Jul 26 2009 14:22
Ayende has all the details here . Read More...
by luisabreu | with no comments
Filed under: ,
NHibernate validator: improving the code with external rules
Sun, Apr 26 2009 11:15
One of the nice things you can do to improve the code we’ve seen in the previous post is define the validation rules in an external assembly. By doing this, you can change your rules without having to recompile the assembly that contains the domain objects. To illustrate this, we’ll change the example presented in the last post . The first thing we’ll do is create... Read More...
by luisabreu | 1 comment(s)
Filed under:
Looking at the NHibernate Validator
Fri, Apr 24 2009 15:30
After started looking at the S#arp framework , I was almost obliged to take a look at NHibernate Validator framework .To see if it was really that good, I decide to pick a small example and apply some validation rules. This post contains some notes on my incursion into this framework. The first thing you need to do is to download the library and add a reference... Read More...
by luisabreu | with no comments
Filed under:
Using the new Fluent NHibernate project
Fri, Oct 24 2008 14:38
If you’re a NHibernate user, you’ve surelly heard about the Fluent NHibernate , a project that allows you to define the mappings by using a fluent API. I didn’t really had the time for testing it until yesterday. Why did I only tested it yesterday? Simple: because I had to perform some major refactorings on the current project I’m working and that meant having... Read More...
by luisabreu | with no comments
Filed under: ,
NHibernate and value objects
Fri, Sep 26 2008 9:23
I do love NHibernate but there’ some things that keeps bothering me: value objects. Yes, NH does support it, but it seems like it’s impossible for having inheritance mapping when you decide to use them. There are some scenarios where inheritance makes sense, even when you’re thinking about value objects. For instance, lets think about contacts…You can probably... Read More...
by luisabreu | with no comments
Filed under: ,