Many-to-Many Data Binding

Published 30 May 07 11:25 AM

In my Forms over Data videos series I show you how to create a one-to-many data entry form in video #3. Recently, I've had a few people ask how to create a form that displays a many-to-many relationship so I thought I'd post on how to do that today.

You can actually think of a many-to-many relationship as two one-to-many's and depending on how you are designing your UI, you may be displaying it one way or the other. Take the many-to-many relationship Orders --< OrderDetail >-- Product where an Order has many OrderDetails and Product also has many OrderDetails. Typically when users are entering the data, we're choosing to display one of the one-to-many relationships for editing. For instance we could have users enter one order at a time that displayed the Order fields as textboxes and the OrderDetails in a grid. Then we could choose Products from a dropdown list in the OrderDetails grid. (The Products are edited elsewhere on the Product Catalog form for instance.)

However when we want to display or report on data, we don't necessarily need it to be easy to enter the data, we want to be able to easily see the data instead. And depending on your UI and your target users, you still may be able to easily guide the users through editing. But what if we wanted to just get a list of all the Products on a particular Order? Or know all of the Orders for a particular Product? These are easy SQL queries but what if we want to reuse a DataSet we already have built, or we want to allow editing of the data?

Say I have a DataSet of what we're describing now: Orders --< OrderDetail >-- Product. 

 

We want a form that will allow the users to scroll through a list of orders and see all the products on that order. So we just want two grids on a form, one of Orders and one of Product. To get the filtering of rows set up properly, we will use the same exact technique for setting up automatic filtering on a One-to-Many form, but with one additional manual step which I'll show you isn't so bad. 

 

To get the form quickly designed and set up, from the Data Sources window I just drag the Orders table and it's related OrderDetails onto the Form. Make sure you select the related OrderDetail table under the Order table otherwise you won't get the automatic filtering set up on the BindingSources it creates for you.

 

 

 

Then drag the Product table onto the form and delete the OrderDetails grid becasue we don't want to display that to the user. This process sets up all the binding components in the Form's component tray properly for all three of our DataTables. It should look something like this:

Now when the position changes in the OrdersBindingSource, the OrderDetailBindingSource will filter the proper rows based on the selected Order. All that's left to do is to filter the ProductBindingSource based on this list of OrderDetails. So open up the code behind and we're going to handle the OrderDetailBindingSource.ListChanged event. In this handler we'll create the filter to apply on the ProductBindingSource based on the filtered rows in the OrderDetailsBindingSource.

Private Sub OrderDetailBindingSource_ListChanged(ByVal sender As Object, _

ByVal e As System.ComponentModel.ListChangedEventArgs) _

Handles OrderDetailBindingSource.ListChanged

 

    If Me.OrderDetailBindingSource.Count > 0 Then

        Dim filter As New System.Text.StringBuilder()

 

        For Each orderDetail As DataRowView In CType(Me.OrderDetailBindingSource.List, DataView)

 

            If filter.Length <> 0 Then

                ' Adding criteria

                filter.Append(" OR ")

            End If

            filter.Append(String.Format("ProductID = {0}", orderDetail!ProductID))

        Next

 

        Me.ProductBindingSource.Filter = filter.ToString

    Else

       ' display no rows

        Me.ProductBindingSource.Filter = "1 = 0"

    End If

End Sub

Now when we run this form, as the user scrolls through the Order rows in the first grid, the Product rows are displayed in the second grid for the entire order. To really understand what is going on just take a look at how the BindingSources are set up in the property sheet. The OrdersBindingSource has the DataSet as the Datasource and the DataMember is set to "Order". Then the OrderDetailBindingSource has its Datasource set to the OrdersBindingSource and its DataMember to "OrderDetails". This sets up the One-to-Many chaining and automatic filtering as explained in video #3 of my Forms over Data videos series.

All that's left in this case is getting the filtering on the ProductBindingSource which has the same Datasource as the OrderBindingsource, the DataSet, but its DataMember is set to "Product". We do this by simply handling the ListChanged event on the OrderDetailBindingSource. These grids are editable too, just be careful that your users understand the filtering that's being applied when working with the Product grid.

Happy Data Binding!

Comment Notification

If you would like to receive an email when updates are made to this post, please register here

Subscribe to this post's comments using RSS

Comments

# Erik Renaud said on May 31, 2007 9:43 AM:

This is a great hack for supporting n to n databinding... but unfortunalty, it doesn't scale correctly... If there is too much data, the Filter can't cope with all those "x1 OR x2 OR x3...".

# Beth Massi said on May 31, 2007 10:29 AM:

Hi Erik,

You're correct in pointing out my example is not scalable but not because of the filter code. It's not good practice to bring down all the data in your database, *that* is what is not scalable. I show how to create paramererized queries in my video series and also I have a post on how to do that. Remember that when we build the filter for the Products, it's done by reading the *filtered* set of OrderDetails. So unless you brought down thousands of OrderDetails that were on one SINGLE Order, you'd be just fine. This would not be a scenario to worry about in my Order - OrderDetails scenario, however if you did have a scenario like this then make sure to create a parameterized query that also limits the linking table's rows.

Cheers,

-B

# Edilberto Pimentel said on June 4, 2007 4:06 AM:

In your "CreatingYour Database.wmv" video serries, how did you define your snippets. I recreated your sample 5 times already and I get everything correctly except the storedprocedure node, on the toolbox tab, there are no usable controls in this group. What did I miss? Can you help me on this issue? Thanks.

# Beth Massi said on June 4, 2007 4:17 PM:

Hi Edilberto,

You can create code snippets by selecting text in the code editor and then dragging that onto the toolbox. Then you can use that snippet of code again by dragging from the toolbox into the editor.

I wrote the stored proceedures and saved them as snippets for the video. They are contained in the database -- look in the Server Explorer under "Stored Proceedures".

HTH,

-B

# Mikaela said on June 12, 2007 1:51 AM:

I followed instruction in your "Connecting To Database" video, but how come it seems like it doesnt work for me.  It was all connected to database but mine won't update, insert or delete like yours? What did I miss? can you please help? Thanks.

# Beth Massi said on June 12, 2007 10:01 AM:

Hi Mikaela,

Please read this post to see if it resolves your issue: http://blogs.msdn.com/bethmassi/archive/2007/05/29/working-with-a-local-data-file-in-vs.aspx

Cheers,

-B

# Mikaela said on June 12, 2007 8:05 PM:

Thank you so much for the help, Beth! Wow! Thanks a lot! It works now! God bless!

# mikaela said on June 13, 2007 2:44 AM:

Sorry, if I ask again. I follwed your instruction in "Creating A Search Video". My prob now is that, it won't search the Lastname that I enter. It is in the the list ofcourse, coz i added it before  searching. And also, after running, it deletes some datas. Why is that? Please help...Thanks!

# Beth Massi said on June 13, 2007 1:45 PM:

Hi Mikaela,

What is your search SELECT query? For help on writing SQL statements you can check out the SQL-Server Development center documentation here: http://msdn2.microsoft.com/en-us/sql/aa336367.aspx?wt.svl=1

-B

# Daniel said on August 15, 2007 12:12 PM:

How do I setup a one to one relationship. I am using an Access Database.

# MaryMary said on October 25, 2007 11:15 AM:

I have taken this excellent information and tried to apply it to my situation.  Instead of Orders 1:M to OrderDetails and Products 1:M to OrderDetails, I have Emps 1:M to EmpTitles (my bridge table for a M:M) and Titles 1:M to EmpTitles.  So, for instance, your OrderDetailBindingSource became my EmpTitlesBindingSource.  And, in the "foreach", your orderDetail became my empTitles.  But when I come to append the ProductID (which is my TitleID), the 3rd parameter won't take (it is titleId in both my Titles and EmpTitles tables).  I thought perhaps it was using a property, so I changed it to TitleId.  In either case, it errs and tells me "the name does not exist in the current context."  What in the world am I doing wrong?  Could it really be this hard?  I think not, but I would certainly appreciate any assistance.  Thanks!

# arthur tom said on January 14, 2008 4:10 AM:

it doesnt work if the "id" column properties is not an integer

# Beth Massi said on January 21, 2008 1:16 PM:

Arthur,

You just need to construct the filter properly. If the key is a string you need quotes around the value.

filter.Append(String.Format("ProductID = '{0}'", orderDetail!ProductID))

# Arthur Tom said on January 24, 2008 8:12 AM:

Is it possibe to obtain that as sample project?

# Arthur Tom said on January 24, 2008 8:19 AM:

is it possible to make many-to-many relation whit sql query? Are ther other ways for it?

# arthur tom said on May 12, 2008 3:30 AM:

thank you Beth

it is working perfect

# killmeplease said on June 2, 2008 4:33 AM:

hi Beth! thanks for the cool article!

i have written a code to add an remove rows from the Products table:

when user adds new product, there two rows created: in Product table and in OrderDetail table, to link it to current selected order.

when user deletes product, only the related row in OrderDetails deleted.

Deletion works OK, but on adding an exception occurs: "An item with the same key has already been added".

Here is a problem code:

1. subscribing to a Product table event:

dataSet.Product.RowChanged += new DataRowChangeEventHandler(Product_RowChanged);

2. handler method:

void Products_RowChanged(object sender, DataRowChangeEventArgs e)

{

   if (e.Action == DataRowAction.Add)

  {

dataSet.OrderDetails.Rows.Add(

(int)ordersDataGridView.CurrentRow.Cells[0].Value,

(e.Row as dataSet.ProductsRow).id);          

}

}

please can you tell me what i doing wrong?

# Weddings said on June 6, 2008 8:27 AM:

In my Forms over Data videos series I show you how to create a one-to-many data entry form in video #3. Recently, I've had a few people ask how to create a form that displays a many-to-many relationship so I thought I'd post on how to do that today. Yo

# SL1NGBL@D3 said on August 11, 2008 8:45 PM:

How would I accomplish this if the data in the tables were linked by GUIDs? I can get the code to work on fields where my Primary key is a numeric value or text, but I cannot get this to work with GUIDs. Is there a way achieve that?

# Costar said on August 29, 2008 10:24 AM:

Can someone help me with this

ProductID is neither a DataColumn nor a DataRelation for table Orders.

this message comes from ListChanged event

plz help

# Costar said on August 29, 2008 7:31 PM:

Can you plz post a file example VB.NET project to examine it in a real test. plz do this.

# Costar said on August 30, 2008 4:17 PM:

Yep, now it works fine sorry for mistake I had posted the code in Order Binding source not in OrderDetialsBinding source.

but now for Insertion how to catch both pks and insert them into OrderDetials table when saving data.

# Beth Massi said on September 2, 2008 1:57 PM:

Hi Costar,

Here are a couple links that should help you with updating master-detail forms:

http://msdn.microsoft.com/en-us/vbasic/cc138241.aspx

http://blogs.msdn.com/bethmassi/archive/2008/01/07/the-new-tableadaptermanager-in-visual-studio-2008.aspx

HTH,

-B

# mj said on September 23, 2008 4:02 PM:

Beth, I love all your video series and was hoping this article would give me what I need.

In my dataset, my middle table (OrderDetail) is just a cross-reference table of two ID's.  Really 1:M and 1:M, instead of your 1:M and M:1 relationships.

As the user scrolls through the parent table of Category, I want to list all the Products.  I don't want to show the middle table ProductCategory to the user.

When I tried your code, my form showed all Products and did not change as I scrolled through the Category grid.  Would it be a small change, or is my situation completely different than what you're doing?

# Sarah said on September 26, 2008 8:21 PM:

Hi Ms. Beth! I am having an exception running the code above (Cannot perform '=' operation on System.String and System.Int32.) I think this is because my ProductID is of type varchar. Can you please help me in this matter? How can I change the code above to make the code work on my case. I'm new to VB. Thanks!

# Sarah said on September 27, 2008 12:51 AM:

Oh! My question is similar with the comment of Mr. Arthur. It's now working. Thanks a lot for this post and your Video Series. It helps me a lot! God Bless.

# Jeremy said on October 27, 2009 6:17 PM:

Hi Beth, this example was something I've been searching for all day. When I tested this it worked great though I realized some weird behavior such as when the orderDetail table doesn't have a sorted order of productIds one product gets lost during the navigation through orders. If I navigate order records for the first time all the related products display correctly but when I continue navigating for multiple times those order records who have more than one product lose one product. I fixed this by adding an order by clause to the select statement but it still seems weird to me.

Leave a Comment

(required) 
(optional)
(required) 

  
Enter Code Here: Required

About Beth Massi

Beth is a Program Manager on the Visual Studio Community Team at Microsoft and is responsible for producing and managing content for business application developers, driving community features and team participation onto MSDN Developer Centers (http://msdn.com), and helping make Visual Studio one of the best developer tools in the world. She also produces regular content on her blog (http://blogs.msdn.com/bethmassi), Channel 9, and a variety of other developer sites and magazines. As a community champion and a long-time member of the Microsoft developer community she also helps with the San Francisco East Bay .NET user group and is a frequent speaker at various software development events. Before Microsoft, she was a Senior Architect at a health care software product company and a Microsoft Solutions Architect MVP. Over the last decade she has worked on distributed applications and frameworks, web and Windows-based applications using Microsoft development tools in a variety of businesses. She loves teaching, hiking, mountain biking, and driving really fast.

This Blog

Syndication

Page view tracker