Tagged Questions

16
votes
3answers
428 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
3answers
4k views

Binding LINQ query to DataGridView

This is very confusing, I use AsDataView to bind query result to a dgv and it works fine with the following: var query = from c in myDatabaseDataSet.Diamond where c.p_Id == p_Id select c; ...
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 ...
5
votes
2answers
449 views

Is it worth using PLINQ with ASP.NET?

Does anyone have experience using PLINQ with ASP.NET? Is this a good combination, or something to avoid in most situations? I develop an intranet ASP.NET site for a lawfirm (~100 users). Several ...
4
votes
2answers
434 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 ...
4
votes
3answers
667 views

Like operator in Linq to DataTable?

I am using Linq to DataTable. How I can apply like operator in where clause. I want to do a search on data just as we have like operator in SQL. I searched and tried the following code but got an ...
3
votes
1answer
302 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
150 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 ...
3
votes
3answers
286 views

Is LINQ to Dataset subset of LINQ to EF or these two are independent?

Is LINQ to Dataset subset of LINQ to EF or these two are independent?
3
votes
1answer
335 views

Can I use a query designer to write Linq Queries against a DataSet

I've got a DataSet created by the xsd.exe tool to import some xml files, and need to denormalize the data within for display purposes. Instead of writing linq to dataset queries by hand is there any ...
2
votes
2answers
40 views

How to filter a DataTable by values not contained in an array?

If I have a DataTable userwidget, which has the following columns: process_id, emp_num, widget_color How to filter this DataTable using LINQ according to the following conditions: 1- WHERE ...
2
votes
2answers
55 views

How to filter a collection using LINQ to DataSet

I'm working with a DataSet that contains two tables that I am trying to get data out of via LINQ. I'm struggling with figuring out the syntax of how to return records that meet a condition. ...
2
votes
1answer
230 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
572 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 ...
2
votes
2answers
1k views

Why doesn't EnumerableRowCollection<DataRow>.Select() compile like this?

This works: from x in table.AsEnumerable() where x.Field<string>("something") == "value" select x.Field<decimal>("decimalfield"); but, this does not: from x in table.AsEnumerable() ...
1
vote
3answers
71 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
2answers
77 views

Using var anonymous object getting InvalidCastException for LINQ

I am getting error while trying to loop through query object using var variable in foreach construct. I am loading xml in to dataset and performing Dataset to Linq for explicit reasons. Please ...
1
vote
2answers
127 views

c# LINQ to dataset IN clause contains, group, min

I am new to LINQ but am trying to tackle a tough one right off the bat. I am trying to do LINQ to dataset and emulate the following query... SELECT smID, MIN(entID) FROM table WHERE exID = :exID AND ...
1
vote
1answer
139 views

LINQ query with SELECT and two GROUP-BY condition

What's the equivalent LINQ instruction for a datatable.net of the following sql query: SELECT code_direction, count(TP) AS CN FROM table1 WHERE cod_time = 'A011' GROUP BY TP,code_direction; and ...
1
vote
3answers
104 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
1answer
101 views

How can I code numerous MIN functions into one LINQ to DataSet query

Ok, I've been working on this one for a while before asking for assistance. I have 4 Oracle based SQL queries which follow one another to deliver the requested data. I'm working in .NET and I think (I ...
1
vote
2answers
369 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
2answers
1k views

how to create a pivot table with dynamic column using linq tree expression

i'm writing an asp.net C# web application; i have an in-memory datatable named 'table1' having three columns 'country', 'productId' and 'productQuantity'; i want to pivot that table in order to obtain ...
1
vote
3answers
1k views

LINQ query returning no rows

I'm new to LINQ, so I'm sure there's an error in my logic below. I have a list of objects: class Characteristic { public string Name { get; set; } public string Value { get; set; } public bool ...
1
vote
3answers
3k views

Select single column from dataset with LINQ

Just getting my head around all this LINQ stuff and it seems I'm stuck at the first hurdle. I have a datatable as such: OrderNo LetterGroup Filepath ----------- ----------- ...
1
vote
3answers
6k views

select column from dataset using LINQ

I am absolutely new to linq query, please help with this query, dataset has fields: Name Value Client_owner. I want to select Value if name == "searchtext" DataTable results = (from d ...
1
vote
1answer
505 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
2answers
160 views

LINQ to DataSets for MySQL Interop

I'm building an application that must support MSSQL and MySQL databases. To avoid duplication of stored procedures etc., I'm considering using the Data Access Application Block to retrieve broadly ...
1
vote
1answer
485 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
2answers
76 views

LINQ to DataSet Group By Multiple Columns - Method Syntax

My question is identical to two previously asked questions LINQ TO DataSet: Multiple group by on a data table, the only difference with this question is that I need to do that with Method Syntax. and ...
0
votes
1answer
82 views

LINQ to SQL join with LINQ to DataSet

I have a SQL database that I'm using LINQ to connect to (LINQ To SQL) and a local set of XML data (in a dataset). I need to perform an outer left join on the SQL table "tblDoc" and dataset table ...
0
votes
0answers
132 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
0answers
110 views

Custom Paging with LINQ?

I have a datatable which contains user details (names, addresses etc). I have a webpage which displays these user details side by side for editing & saving before moving on to the next two sets of ...
0
votes
1answer
152 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
124 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
267 views

Converting an entity model to a dataset - can this be done?

Very frustrated here ... I can usually find an answer of some kind to complex issues in .Net somewhere on the net, but this one eludes me. I'm in a scenario where I have to convert the result of a ...
0
votes
4answers
282 views

LINQ query fails for NULL values

var query = from t1 in Table1 join t2 in Table2 on new { t1.Id } equals new { t2.Id} select new { t1.Id, ...
0
votes
2answers
118 views

have join multiple table and get the output in DataRow in LINQ

HI, I have a scenario where i have join multiple table and get the output in DataRow(All the Rows return by the query). SQL Query: SELECT Fr.InterCodeId FROM ...
0
votes
1answer
95 views

Linq multi column grouping and averaging

I'm trying to get the average of some numbers after grouping but it just won't group for me. Why isn't this doing what I think it should? var eventInfo = from eventData in dt.AsEnumerable() ...
0
votes
2answers
376 views

LINQ to DataSet to get generic list from DataTable

DataTable table = DataProvider.GetTable() var clientIds = from r in table.AsEnumerable() select r.Field<string>("CLIENT_ID"); I want clientIds to be a List<string>. ...
0
votes
1answer
517 views

Linq to DataTable not producing Distinct values

I have a datatable which has been dynamically generated from FoxPro tables using a UNION Select statement. e.g. SELECT * FROM x UNION SELECT * FROM y UNION SELECT * FROM Z ORDER By v_alue1 This ...
0
votes
1answer
221 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
1answer
410 views

Copying Result of Linq into DataTable

What changes do i need to make so as to reduce of doing this task with fewer lines and better approach. DataTable dtStatusMsgs; var statusList = ( from items in ...
0
votes
2answers
1k views

not able to use CopyToDataTable in linq for returning dataset

how to return a dataset from linq in .net 3.5? I have seen in some sites that CopyToDataTable method is used but I am not able to use that methos as I cannot find System.data.datatableextensions ...
0
votes
3answers
3k views

Select distinct rows from datatable in Linq

I am trying to get distinct rows based on multiple columns (attribute1_name, attribute2_name) and get datarows from datatable using Linq-to-Dataset. I want results like this attribute1_name ...
0
votes
1answer
46 views

I want to get 2 values returned by my query. How to do, using linq-to-entity

var dept_list = (from map in DtMapGuestDepartment.AsEnumerable() where map.Field<Nullable<long>>("GUEST_ID") == ...
0
votes
3answers
175 views

Why I am getting Null from this statement. Query Syntax in C#

This is not working. Returns Null to dept_list. var dept_list = ((from map in DtMapGuestDepartment.AsEnumerable() where ...
0
votes
1answer
2k views

When using Query Syntax in C# “Enumeration yielded no results”. How to retrieve output

I have created this query to fetch some result from database. Here is my table structure. What exaclty is happening. DtMapGuestDepartment as Table 1 DtDepartment as Table 2 Are being ...
0
votes
1answer
480 views

Issue with DBNull when using LINQ to DataSet

I've got the following LINQ Statement: Dim PSNum As Integer = 66 Dim InvSeq = (From invRecord In InvSeqDataSet.RptInvSeqDT.AsQueryable() _ Where IIf(invRecord.IsPack_NumNull(), ...
0
votes
2answers
336 views

grouping data from two dataset

i've got a problem with dataset: I've got two dataset from two different server but they have the same columns. so it's like that: First DataSet : asset description make jobtype jan feb ... dec ...

1 2