Tagged Questions

5
votes
3answers
1k views

Does LINQ use DataRelations to optimize joins?

I can't find the answer to this anywhere, and before I start pawing through generated code with Reflector I thought it'd be worth asking: Suppose I have the following LINQ query run against ...
2
votes
2answers
59 views

DataSet select parent rows where child rows contains x value

I have two DataTables in a DataSet linked together by a DataRelation and I'm trying to select all parent rows that have a child row with value x. The parent table contains products and the child ...
2
votes
1answer
47 views

Finding DataSet rows which violate a foreign relation?

If I do something like the following and then add a row that has a foreign key value that is not a primary key value in the parent table, no error is thrown. What I would like to do is the following: ...
2
votes
4answers
1k views

What is the purpose of a DataRelation in a DataSet?

A C# program I am working on will need to export data to one or more tables of data. Some columns of these tables will be related to one another, such that the ID column of of one table may be ...
2
votes
2answers
2k views

DataRelation Insert and ForeignKey

I have a winforms application with two DataGridViews displaying a master-detail relationship from my Person and Address tables. Person table has a PersonID field that is auto-incrementing primary key. ...
1
vote
0answers
75 views

A TableRow referenced trought a DataRelation always returns null

Using the DataSet designer in Visual Studio 2010, I've added some tables from a MySql DB. VS10 automatically picks up and adds the relations between the tables, e.g., the relation ...
1
vote
0answers
13k views

Master / Detail datagridview with relation from type string in C#

I want to show a master / detail relationship using two datagridviews and DataRelation in C#. The relation between the master and the detail table is an ID from type string (and there is no chance to ...
0
votes
0answers
77 views

Rewriting a buggy DataRelation (needs null & non-unique values)?

So I am not a .cs developer, but I've got some .cs code that I have to debug. The code is using a couple of DataRelations to manage the relationships among data that we then display on an .aspx page ...
0
votes
0answers
98 views

Create Multiple DataRelations between three tables in DataSet (Not Strongly Typed)

I am familiar with programmatically loading a dataset with two tables and adding a parent child relationship between them. When I tried adding a third table and a second relationship in the same ...
0
votes
2answers
26 views

Is it possible to order data in a datatable by a related datatable in the dataset?

I've been using ORM's for so long, I appear to have forgotten most of my basic data handling skills in dotnet :( Is it possibly to do something like this? DataSet ds = new DataSet(); ...
0
votes
2answers
155 views

Inserting NULL into DataTable

Morning (in RSA at least), I'm trying to create a data driven menu, using data from a self-referencing table to create a (2-level) hierarchical structure. Example Data is: MenuID ParentID Text ...
0
votes
0answers
26 views

Are cascading DataRelations possible?

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 ...
0
votes
0answers
81 views

DataRelation Problem

Hi I have two table they are Master and Detail I am creating a DataRelation with two table on C# windows application. > SqlConnection MyCon=new SqlConnection(ConnectionString); > ...
0
votes
1answer
508 views

Populating object properties from DataSet using LINQ

Here is my current relationship DataRelation relation = new DataRelation("EventCategoryRelation", eventsTable.Columns["event_id"], eventCategoriesTable.Columns["event_id"]); ...
0
votes
1answer
93 views

ADO.NET DataRelation

If I create a relation between 2 DataTable in my C# code and then update my DataAdapter + acceptChanged on my DataSet, will this Relation be repercuted on the server or is it only a client based ...
0
votes
2answers
296 views

ArgumentNullException when creating new datarelation

I have two unrelated tables in SQL Server. I want to form a relationship with them via C# so the database diagram in SQL Server has the relationship line etc (the code may have flaws apart from the ...
0
votes
1answer
1k views

DataRelation between two data tables - can't bind data to a listbox (C# .NET 3.5)

C# (.NET 3.5) I have an SQLite database with two tables - employees (the first column being id INTEGER PRIMARY KEY), and holidays (id INTEGER - meaning the ID of the employee; start DATE, end DATE - ...
0
votes
1answer
925 views

How to display a DataRelation on DataGridView

5 and I try to solve the "more than one entity situation" using a single query for each one and then joined them with DataRelation, so after I realized that I've tryed to show data on this way : ...
0
votes
1answer
2k views

How would one get a DataGridViewCheckBoxColumn to show DataRelation status?

Say I have a DataGridView (named dataGridView) that is displaying a Strongly Typed DataTable (named ChildDataTable). dataGridView has a DataGridViewCheckBoxColumn (named parentIDColumn) that is bound ...
0
votes
1answer
2k views

Master / Detail datagridview with relation from type string in C#

I want to show a master / detail relationship using two datagridviews and DataRelation in C#. The relation between the master and the detail table is an ID from type string (and there is no chance to ...
-1
votes
1answer
144 views

How to join datatables of a dataset?

I have a dataset which have four datatables. Table[0] contains columns such as: storedProcedure,DLLMethod,BLLMethod Table[1] contains columns such as: DLLMethod,BLLMethod Table[2] contains columns ...