Tagged Questions

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 => ...
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
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
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
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
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
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
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
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
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
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
36 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
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
1answer
54 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 ...
0
votes
2answers
108 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
461 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
342 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 ...
0
votes
2answers
932 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
2answers
354 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
390 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
1answer
262 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 ...
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
169 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
2k 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 ...
0
votes
3answers
293 views

How can I use a condition based on the queried data in an anonymous class in LINQ to DataSet?

I can do this by looping the result of a simplified query: var query = from myrecord in dt.AsEnumerable() where myrecord.Field<string>("field1") == "value1" || ...
0
votes
3answers
2k views

Load result of Linq-to-DataSet query with join into datatable

I have a linq to dataset query that joins two tables and extracts the desired parameters from each. I need to get them into a DataTable to bind to a DataGridView. The example I found for doing this ...
0
votes
1answer
435 views

Combine Data from multiple DataSets

I'm loading data from multiple xml files with different schemas into DataSets. I do have foreign key style relationships between the tables in each xml file but to date they're only enforced by code. ...
-1
votes
4answers
87 views

Generic collection fill by var value

In my code, I need help to put result value into oList NorthwindDataContext db = new NorthwindDataContext(); List<Category> oList = new List<Category>(); var result = from p in ...