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
61 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 ...
1
vote
1answer
231 views

Using DataRelations and DevExpress Grids - Hide expansion control

I have a bit of a weird issue. We use DevExpress controls to do all our Windows Form development. Anyway, I found a perfect use for the DataRow.SetParentRow/GetParentRow methods in my grid. So I ...
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 ...
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
1answer
93 views

how to add a relationship between tables in the dataset

I have the following code to get the get the relationship between the tables in the same dataset , but when run the following code i encounter with error saying , these columns currently dont have ...
0
votes
0answers
82 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
509 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
0answers
250 views

How to filter a dataset with two datatables and a dataRelation?

I have two datatables in a dataset. The tables have the the same schema and a relationship on the item column. Item | Qty Now I would like to filter out only those rows where item number matches ...
0
votes
1answer
289 views

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

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 from ITEM table, which ...
0
votes
1answer
927 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
2answers
557 views

DataRelation from a single query

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" Dim com = New ...