Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
2answers
295 views

.net dataset how to get deleted child rows

I have a strongly-typed dataset (VB.NET), using .NET Framework 2.0. Given a DataRow in a parent DataTable and a DataRelation, I need to find all related rows in the child DataTable that have a ...
2
votes
0answers
101 views

How to model data entities with multiple parents?

How would I model a relationship between multiple entities where one entity could be part of two separate, unrelated, hierarchies and each entity could be related to 1 or more other entities in a ...
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
2answers
34 views

Get Table in DataRelation at runtime

I try to explain with an example what i need I have a Patient and Order tables in db. Patient can have multiple orders through stored procedure i will get patient attributes and orders related to ...
1
vote
2answers
41 views

WPF, EF4, and relations

Relations is probably the wrong word to use, but Data tables are what I have used before. I have EF4 pulling from a SQL database. Tables like Customer, Company, Department; things that usually go into ...
1
vote
1answer
229 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 ...
1
vote
1answer
658 views

LINQ - How can I use DataSet.DataRelation to join these tables and sum one field?

My LINQ query is not producing the expected output below. Basically, it's the sum of table3.cost corresponding to table2.code and table2.class categorized by table1.alias and ordered by ...
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 ...
1
vote
3answers
5k 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 ...
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
156 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
1answer
92 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
0answers
28 views

Help on setting up DataRelation & Computational columns

Using .Net 3,5 & VS2008, I created two databases, each with tables as follows: - General -- Catalogue (table filled with item data) --- Expression Column (compilation of names from this table) - ...
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
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
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
247 views

Why combobox refresh doesn't work?

I have a complex problem, could you please help me. The problem: I have a form with a TabControl. There are two TabPages in the first is a dataGridView and in the second are multiple comboboxes. ...
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
288 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
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
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 ...
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 ...