I have three tables: 1) Patrons: ID, PhoneNumber 2) Items: ID, Title 3) Checkouts: ID, PatronID, ItemID, CheckoutDate
When the user selects a Patron record I would like to display the related checkouts in a DataGridView. But instead of displaying just the materialID I would like to display the material Title.
I tried doing this using a DataRelation. Although the Checkout Date column is properly populated, the Title column is blank.
_dataSet.Relations.Add(
"PatronsToCheckouts",
_dataSet.Patrons.IDColumn,
_dataSet.Checkouts.PatronIDColumn);
_dataSet.Relations.Add(
"CheckoutsToMaterials",
_dataSet.Checkouts.BarcodeColumn,
_dataSet.Materials.BarcodeColumn,
false); // don't enforce constraints so can add this many-to-one column
BindingSource bsPatrons = new BindingSource(_dataSet, "Patrons");
dgPatrons.DataSource = bsPatrons;
dgCheckouts.AutoGenerateColumns = false;
dgCheckouts.DataSource = bsPatrons;
dgCheckouts.DataMember = "PatronsToCheckouts";
DataGridViewColumn col;
col = new DataGridViewTextBoxColumn();
col.Name = "Item Title";
col.DataPropertyName = "CheckoutsToMaterials.Title";
dgCheckouts.Columns.Add(col);
col.Name = "Checkout Date";
col.DataPropertyName = "CheckoutDate";
dgCheckouts.Columns.Add(col);
When I do the following instead, the Title shows up properly but the CheckoutDate column becomes blank. Is there a way to get both columns to populate correctly?
dgCheckouts.DataMember = "PatronsToCheckouts.CheckoutsToMaterials";