PDA

View Full Version : An Article- Many-to-Many Relationships in O/R Mapping



s_sana
14 Dec 2006, 12:16 AM
I read this article and found it really informative. Here is the summary....

If you are developing an object oriented .NET application that has to talk to a database, you'll inevitably map objects to a relational model. And, most likely you'll face situations where many-to-many relationships exist in your database. This article describes how you can handle many-to-many relationships in O/R mapping.

Most .NET applications are object oriented and at the same time they have to deal with relational databases. This creates a difficulty for the developers because they have to figure out how to map their objects to the tables in the database. Sometime, there is a one to one mapping between an object and a table and at other times, one object may consist of data from multiple tables or subset of data from one table.

The most important thing one can achieve in O/R Mapping is to capture the logical data model design in the object model of the application. This makes it really easy to design, develop, and later maintain this object model. We'll try to follow this rule when mapping many-to-many relationships to objects.

Please read the complete article at http://www.alachisoft.com/rp.php?dest=/articles/m-n_relationships.html

neutron2k
22 Jan 2007, 08:44 AM
The only way I know to implement a many-many relationship is: Its not possible. You need a linking table between the two. :)

I havn't had a chance to read the article yet tho.