Results 1 to 2 of 2

Thread: An Article- Many-to-Many Relationships in O/R Mapping

  1. #1
    Join Date
    May 2005
    Posts
    7

    An Article- Many-to-Many Relationships in O/R Mapping

    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?des...tionships.html

  2. #2
    Join Date
    Jun 2006
    Location
    southampton uk
    Posts
    12
    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.

Similar Threads

  1. Article Directory Search Engine
    By excellentguide in forum Search Engine Optimization and Marketing
    Replies: 0
    Last Post: 14 Aug 2006, 08:54 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •