The tag has no wiki summary.

learn more… | top users | synonyms

34
votes
3answers
2k 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 ...
8
votes
3answers
10k 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
8k 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 ...
7
votes
3answers
17k 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 ----------- ----------- ...
6
votes
3answers
17k views

LINQ to DataSet, distinct by multiple columns

Just wanted to check if there is way to do distinct by multiple columns. Thanks in advance!!! BTW, I found a great LINQ extension here but need some guidance to use it for multiple columns
6
votes
3answers
343 views

How to use Field<T> with Type?

I have a method that determines the min and max of a column in a DataTable: public void GetMinMaxRange( DataTable data, string valueColumnName ) { var min = data.AsEnumerable().Min(m => ...
5
votes
2answers
570 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 ...
5
votes
2answers
164 views

Join in LINQ that avoids explicitly naming properties in “new {}”?

I would like to do something like this: DataTable q = from c in customers join o in orders on c.Key equals o.Key into outer from j in outer.DefaultIfEmpty() ...
4
votes
5answers
19k 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 ...
4
votes
3answers
447 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?
4
votes
3answers
6k views

Store an image in a SQL Server CE database

Does any one know of an example on how to store an image in a SQL Server CE database? What data type should the column be? (I am guessing binary.) I use Linq-To-Datasets. Is it possible using that ...
4
votes
3answers
2k 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 ...
4
votes
2answers
1k 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
2answers
563 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
1answer
844 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
3answers
253 views

AsEnumerable().Take

I want to take fist n number of records from a data table. I don't want to run a loop which I already know. I'm trying to do this DataTable dt = dtResult.AsEnumerable().Take(n) is the right ...
3
votes
2answers
3k 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() ...
3
votes
1answer
750 views

Convert Multiple tables to Dataset

My question seems quite simple but became tedious for me. In my project, i have a DBML file which is acting as a Data Access Layer. There one more utility method that is converting the existing result ...
3
votes
1answer
492 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
5answers
184 views

Simplify my C# Linq statement?

class : class Foo { public int Id { get; set; } public string Name { get; set; } } List List<Foo> lst = new List<Foo>(); Datatable : DataTable dt = GetFromDb ().... I ...
2
votes
2answers
3k views

DataTable does not contain definition for AsEnumerable

Using linq to query a datatable returns the following error: CS0117: 'DataSet1.map DataTable' does not contain a definition for 'AsEnumerable' Project includes reference for ...
2
votes
1answer
3k views

Update/Insert to a table using SQLCeResultSet

I have a SQL Compact Edition Database that I update periodically (via web services). The part where I write to the database is taking way too long. I am currently doing it with Linq to Datasets (as ...
2
votes
2answers
537 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
3answers
10k 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 ...
2
votes
2answers
629 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
2answers
1k 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 ...
2
votes
2answers
1k 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
1answer
450 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
1answer
677 views

Query a DataSet using LINQ

I have a DataSet that I fill with a SQL select query. I then need to perform an extra query on this DataSet to filter the data some more, using LINQ to DataSet. I then want to hook this LINQ result up ...
2
votes
1answer
707 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
604 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
3answers
2k 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
1answer
1k views

convert generic list to datatable using linq..?

List<Employee> objEmpList = new List<Employee>(); for (int i = 0; i < 5; i++) { objEmpList.Add(new Employee(){ID=i, Name="aa" + i}); } I want to create table with ...
1
vote
1answer
514 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 ...
1
vote
3answers
851 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
501 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, ...
1
vote
1answer
269 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 ...
1
vote
2answers
317 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
1answer
4k 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 ...
1
vote
1answer
629 views

Using LINQ to fetch result from nested SQL queries

This is my first question and first day in Linq so bit difficult day for me to understand. I want to fetch some records from database i.e. select * from tblDepartment where department_id in ( ...
1
vote
1answer
74 views

How to skip attributes when converting an XML file into a Dataset displayed with DataGridView

As stated in my question, i have a XML file that outputs as follows: <cme Type="Object" Class="cme"> <sId Type="String">1</sId> <conc Type="Double">18,6511073619</conc> ...
1
vote
1answer
324 views

How can I put a Sum() in this linq query?

I am looking to sum the "Status" field. Dim _detailRecords As New DataTable _detailRecords.Columns.Add("y") _detailRecords.Columns.Add("z") _detailRecords.Columns.Add("A", ...
1
vote
2answers
4k 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 ...
1
vote
3answers
1k views

query dataset using LINQ [duplicate]

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
227 views

Case sensitive LINQ to DataSet

I am having an issue with a strongly typed DataSet exhibiting case-sensitivity using LINQ to DataSet to retrieve and filter data. In my example project, I have created a strongly typed DataSet called ...
1
vote
2answers
1k 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
2answers
1k 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
1answer
210 views

Finding a column in a DataTable row

Client_Payroll_Items.AsEnumerable().Select((row, index) => new {row, index}) .Where( (x => x.row.Client_KEY == 3) && (x => x.row.Description == "401(k) ...
1
vote
2answers
2k 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
1answer
304 views

LINQ to Object to DataSet

Can I do a LINQ Join from an List to a DataSet? Are there any caveats to doing this?

1 2 3