Tagged Questions

16
votes
3answers
395 views

Why is LINQ JOIN so much faster than linking with WHERE?

I've recently upgraded to VS 2010 and am playing around with LINQ to Dataset. I have a strong typed dataset for Authorization that is in HttpCache of an ASP.NET WebApplication. So i wanted to know ...
7
votes
6answers
7k views

Linq to SQL or Linq to DataSet?

I am new to Linq world and currently exploring it. I am thinking about using it in my next project that involves database interaction. From whatever I have read, I think there are 2 different ways to ...
4
votes
2answers
376 views

How to join with LinQ to (typed) dataset?

i recently upgraded VS 2005 to 2010 and am fairly new to LinQ. Maybe somebody can put me in the right way. Background: I have a typed dataset and have the standard SQLMembershipProvider extended ...
3
votes
1answer
250 views

Get duplicates for two columns with LINQ

LINQ drives me crazy. Why does following query not return the duplicates, whereas it works with only one identifier? Where is my error? ' generate some test-data ' Dim source As New DataTable ...
3
votes
2answers
142 views

Warning: “Using the iteration variable in a lambda expression may have unexpected results”

Edit: Here is a much more simpler example of this issue (i've deleted my original question): Dim numbers1 As New List(Of Int32)({1, 2, 3}) Dim numbers2 As New List(Of Int32)({3, 4, 5}) For Each n1 In ...
2
votes
1answer
220 views

LINQ and performance with typed and untyped datasets?

Has anybody had a chance to compare and measure performance of LINQ with typed and untyped datasets? What are the internal implementation differences of these two. I know that LINQ-to-SQL uses ...
2
votes
2answers
521 views

LINQ to DataSet - Joins and GridView Issues

I've got three DataTables that I need to join together, and use the joined data as the DataSource for a GridView. The first (localSQLTable) is populated via a query against an MS-SQL database. The ...
1
vote
3answers
53 views

query dataset using LINQ [closed]

Possible Duplicate: Not displaying data in gridview when applying filter to a dataset I am having a Dataset ds with contents of table emp with ename , pass , status as attributes . I ...
1
vote
3answers
86 views

Ordering a DataTable with Linq to DataSet using field substrings

I want to order a DataTable with Linq to DataSet using two ordering values. However the two values come from splitting and parsing the same field (don't ask me why!). I tried to do this: var query = ...
1
vote
2answers
117 views

GroupBy in LINQ to DataSet

Background: I'm importing data from a MySQL database into a SQL-Server database(for reports and later a SSAS-Cube). I want to normalize the data at the same time. I want to group repeating Ticket_IDs ...
1
vote
2answers
340 views

LINQ-Join tables on nullable columns

how to JOIN tables on nullable columns? I have following LINQ-query, RMA.fiCharge can be NULL: Dim query = From charge In Services.dsERP.ERP_Charge _ Join rma In ...
1
vote
1answer
493 views

Chaining databound LINQ queries in LINQ to DataSet

I am trying to perform a query on a query result, but I am getting an error: “The method or operation is not implemented”. Can I chain queries in this way? For example, I have a Northwind typed ...
1
vote
1answer
480 views

Specifying return rows in LINQ2DataSet

I have a requirement to extract a distinct subset of rows from a DataTable, and thought LINQ2DataSets may be a useful and clean way to do this, however it appears that it is not possible to simply ...
0
votes
0answers
113 views

C# DataTable GROUP BY WITH ROLLUP / Execute SQL

Trying to convert a SQL stored proc that used a group by rollup into a DataTable. I have used LINQ for the most part. But I can't figure out the GROUP BY ROLLUP part. I need to be able to do a ...
0
votes
1answer
139 views

How can I get “levels” of a self referencing table in LINQ?

There's a table Category with a pk idCategory and a self-referencing foreign-key fiCategory. That means categories are "main-categories" when fiCategory is null. If fiCategory links to another ...
0
votes
1answer
113 views

Get different rows in two typed DataTables with different schema

How to get all rows from TableA that are not in TableB where the schema of TableA is different to TableB(they are different typed DataTable classes coming from different dbms)? I need all ...
0
votes
1answer
205 views

LINQ casting with a Data.DataTableCollection

I have the following VB.NET code that I am using to sort a Data.DataTable by column count. For Each dtTarget As Data.DataTable In _ From x In Target.Tables _ Where DirectCast(x, ...
0
votes
2answers
1k views

DataTable.AsEnumerable().Distinct() doesn't work because of primary key column

I want to remove duplicates from my DataTable so I'm using DataTable.AsEnumerable().Distinct(DataRowComparer.Default) but it doesn't do what I need. I think because each duplicate row has it's unique ...