vote up 2 vote down star

Hi,

I'm currently looking for an OR-mapper to use for a side project I'm about to start. Since we're using an inhouse developed OR-mapper at work I don't really know much about how other mappers work (and have a pretty incomplete picture of which exist). After some research it seems that NHibernate, Linq-to-SQL and Entity Framework are the most commonly used ones.

So here's my question: is it possible in [insert your favorite ORM here] to map a one-to-many AND a one-to-one relation between the same tables and how is it done (elegantly)? A simple example for this is to store a list of items (one-to-many) and the selected item (one-to-one).

The reason I chose this particular question is that it's a painpoint with our inhouse OR-mapper: it just doesn't allow more than one relation between two tables. What I want to gain from asking this is some insight from people who are working with those mappers to aid me in deciding which (existing!) OR-mapper to use for my side project.

Thanks for your help!

flag

3 Answers

vote up 1 vote down check

I think most of leading ORM support such mappings (the only exception i heard is Subsonic). For example in DataObjects.Net it will look like this:

public class ItemStore : Entity
{
  [Field, Key]
  public int Id { get; set; }

  [Field]
  public Item SelectedItem { get; set; }

  [Field, Association(PairTo = "Store")]
  public EntitySet<Item> Items { get; private set; }
}

public class Item : Entity
{
  [Field, Key]
  public int Id { get; set; }

  [Field]
  public ItemStore Store { get; set; }
}
link|flag
Thanks for your answer! But all I can see is the one-to-many mapping, it seems the mapping of the selected item (one-to-one) is missing. Or am I overlooking something? – andyp Nov 9 at 10:34
1  
OK, I've updated my model. It seems I didn't clearly understand your example. – Alex Kofman Nov 9 at 10:49
Great, thanks a lot for making that clear! – andyp Nov 9 at 14:55
Do you know why Subsonic doesn't allow this type of relations? – andyp Nov 9 at 22:58
I'm not familiar enough with subsonic, it's better to ask someone who uses it or look for details their website. I just heard that it don't support reference fields at all, i.e. you can not declare field SelectedItem of type Item, but can only declare SelectedItemId. – Alex Kofman Nov 10 at 7:47
show 1 more comment
vote up 1 vote down

The purpose of an OR mapper is to make the database correspond to an object graph. So the association you describe might look like: (and here I'm using Hibernate, which is more or less the same as NHibernate, but in Java instead of C#/.NET)

//table schema: 
// item_store(item_store_id, selected_item_id)

@Entity
@Table(name="item_store")
class ItemStore {
 @Id
 @Column(name="item_store_id")
 public String getId() {...}

 @OneToMany(mappedBy="itemStore")
 public Collection<Item> getItems() {...}

 @ManyToOne
 @JoinColumn(name="selected_item_id")
 public Item getSelectedItem() {...}
}

//table schema:
// item(item_id, item_store_id)

@Entity
@Table(name="item")
class Item {
 @Id
 @Column(name="item_id")
 public String getId() {...}

 @ManyToOne
 @JoinColumn(name="item_store_id")
 public ItemStore getItemStore() {...}
}

I'm sure I've made a mistake or two in here somewhere, but hopefully you get the idea how it works.

link|flag
1  
The "@" signs are Java annotation metadata. The NHibernate equivalent would be to use Attributes with the NHibernate.Mapping.Attributes add-in: hibernate.org/hib_docs/nhibernate/… (the default approach uses an XML mapping file; I prefer annotations because they are easier to read, checked by the compiler, and closer to the code they operate on) – RMorrisey Nov 7 at 16:51
Yep, I know annotations - have done some Java at university (few years ago though). Thanks for the link! And I agree (strongly) with you that using attributes is much better than using (separate) XML mappings. – andyp Nov 7 at 17:04
NHibernate looks very good! I've player a bit with it a few weeks ago and have to admit I like it a lot (especially when using FluentNHibernate). – andyp Nov 7 at 17:05
vote up 0 vote down

If you have two tables, one for Lists and one for ListItems. ListItems would have a foreign key to Lists and Lists would have a foreign key to ListItems for the selected item.

This is a very simple relationship and should be supported in all OR-mapping tools.

link|flag
I know how to map it to database tables. I'm only interested in how it's done in diffrent OR-Mappers. Sorry, I should have been more clear about that in my question (highlighted that part now). But thanks for your answer anyways! – andyp Nov 7 at 16:34

Your Answer

Get an OpenID
or

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