The linq-to-dataset tag has no wiki summary.
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 => ...
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 ...
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 ...
0
votes
1answer
317 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 ...
1
vote
2answers
318 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
81 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 ...
0
votes
1answer
253 views
Getting a column value
private string FindTaxItemLocation(string taxItemDescription)
{
if (!templateDS.Tables.Contains(cityStateTaxesTable.TableName))
throw new Exception("The schema dos not ...
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) ...
0
votes
2answers
827 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
841 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,
...
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 ...
1
vote
1answer
168 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 ...
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 ...
0
votes
1answer
93 views
Best practices to create different projections from database for use with C#
So, my problem is that I have a bunch of interrelated tables in my database. Now, according to what the user wants, I need to create different projections from them.
Lets say that I have 10 tables ...
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 ...
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 ...
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 ...
0
votes
2answers
255 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
...
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 ...
0
votes
1answer
1k views
Changing dataset XSD in VS2010 generates code inheriting from DataTable instead of TypedTableBase<Type>
The current XSD is :
<xs:element name="Country">
<xs:complexType>
<xs:sequence>
<xs:element name="code" type="xs:string" />
<xs:element ...
0
votes
2answers
712 views
Linq to DataSet filter one column for multi keywords
I have code like this:
var modele = from model in ds.Tables["modele"].AsEnumerable()
where model.Field<string>("KRAJ_PRODUKCJI") == krajText
...
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 ...
0
votes
1answer
193 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()
...
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 ...
0
votes
2answers
971 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>. ...
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 ...
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
----------- ----------- ...
0
votes
1answer
969 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 ...
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 ...
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, ...
0
votes
1answer
2k 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
2k 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
1answer
552 views
Syntax for LINQ to DataSets Row Filter in C#?
I have two DataTables one is Primary Table and the rest is a sub table (I AM UISNG STRONGLY TYPED DATASET).
Example
Employee Table
Id Name City
1 AAA NY
2 BBB BB
3 CCC AA
...
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 ...
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 ...
0
votes
1answer
59 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
298 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 ...
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
630 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
(
...
0
votes
1answer
758 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(), ...
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?
0
votes
1answer
5k views
Getting minimum - Min() - for DateTime column in a DataTable using LINQ to DataSets?
I need to get the minimum DateTime value of a column in a DataTable. The DataTable is generated dynamically from a CSV file, therefore I don't know the name of that column until runtime. Here is code ...
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 ...
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()
...
0
votes
2answers
449 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
...
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?
0
votes
1answer
904 views
Slow Update/insert into SQL Server CE using LinqToDatasets
I have a mobile app that is using LinqToDatasets to update/insert into a SQL Server CE 3.5 File.
My Code looks like this:
// All the MyClass Updates
MyTableAdapter myTableAdapter = new ...
1
vote
2answers
1k 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 ...
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;
...
1
vote
1answer
904 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 ...
