Tagged Questions
The linq-to-dataset tag has no wiki summary.
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
3answers
3k 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 ...
6
votes
2answers
116 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
440 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
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 ...
4
votes
3answers
586 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
3answers
3k 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 ...
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 ...
3
votes
1answer
314 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
3answers
279 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
328 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
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 ...
2
votes
1answer
315 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
1k 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
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
54 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
58 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
106 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
126 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
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
48 views
Binding a data source but displaying something else
I have quite a few places where I need to bind form controls directly to a backing database. I'm using LINQ to DataSet to do this.
For example, I have a ComboBox with entries filled in by a database ...
1
vote
1answer
48 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
1answer
97 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
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
3answers
931 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
1answer
440 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
203 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
vote
2answers
935 views
LINQ to DataSet - group by variable field, or join on a variable condition (with sum)
The following query works as long as I can add DataRelations. However, the relation "Table2Table3" may no longer be clearly defined, so I think I need to remove it. The old relation strictly joins on ...
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
1answer
140 views
How can I sum a field from a grandchild table in a LINQ to DataSet where clause?
I think I need to do exactly this, but instead using LINQ to DataSets because the "Transactions" table is in DB2 and there is no data context.
...
1
vote
2answers
319 views
LINQ to DataSet Dataclass assignment question
I'm working on a Silverlight project trying to access a database using LINQ To DataSet and then sending data over to Silverlight via .ASMX web service.
I've defined my DataSet using the Server ...
1
vote
3answers
5k 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
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
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
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
2answers
34 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
2answers
29 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 ...
0
votes
1answer
42 views
LINQ to Dataset no longer recognises the “Field<string>” keyword
I have some data in a dataset and I would normally select a record as shown below.
SnapshotDS.SnapshotRow[] previousRow =
m_PreviousSnapshot.Snapshot.Select(string.Format("TechKey = '{0}'", ...
0
votes
1answer
75 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
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
0answers
95 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
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
63 views
Getting a column value
private string FindTaxItemLocation(string taxItemDescription)
{
if (!templateDS.Tables.Contains(cityStateTaxesTable.TableName))
throw new Exception("The schema dos not ...
0
votes
1answer
245 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 ...