Tagged Questions

3
votes
3answers
604 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 r …
1
vote
2answers
537 views

DataRelation Insert and ForeignKey

Guys, 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 aut …
0
votes
1answer
26 views

How do I get all rows from ITEM table, which are children of a parent ITEM table row, where relationship is stored separately?

Hi, How do I get all rows from ITEM table, which are children of a parent ITEM table row, where relationship is stored separately? How can I do a join to do this? "get all rows …
0
votes
1answer
145 views

How to display a DataRelation on DataGridView

Hello Im using C# 3.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'v …
0
votes
4answers
218 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 …
0
votes
0answers
91 views

SqlDataAdapter and UpdateBatchSize

I am running into a problem when setting the UpdateBatchSize property to a number > 1 on my data adapter. I only get an error when I have a very specific type of DataRelationship …
0
votes
1answer
832 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 parentIDC …
0
votes
2answers
222 views

DataRelation from a single query

Hi, i have the following piece of VB.NET code: Dim conn As New MySql.Data.MySqlClient.MySqlConnection(ConnectionString) conn.Open() Dim sql = "SELECT * FROM users" …
0
votes
1answer
1k views

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

Hello, 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 strin …
0
votes
2answers
4k views

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

Hello, 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 strin …
0
votes
3answers
1k views

How To: Use DataRelation to perform a join on two DataTables in a DataSet?

How do I perform a join between two DataTables in a Dataset? I created a DataRelation between two tables….then what? I'm looking at one explanation on how to do it (http://www.em …