The tag has no wiki summary.

learn more… | top users | synonyms

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> ...
0
votes
2answers
101 views

Linq to dataset, Query optimization

I have following linq queries: var itembind = (from q in dsSerach.Tables[0].AsEnumerable() select new { PatternID = ...
0
votes
1answer
77 views

Passing a Null date value in LINQ

Private m_ExpirationDate As Nullable(Of DateTime) Public Property ExpirationDate() As Nullable(Of DateTime) Get Return m_ExpirationDate End Get Set(ByVal value As Nullable(Of ...
0
votes
2answers
82 views

Linq for sum of distinct addresses

I have a DataTable of Products. Each product has a weight and a return address. The return address is comprised of 7 fields. I need to cycle through the distinct addresses and sum up the total weight ...
0
votes
1answer
722 views

VB.Net Linq-To-DataTable search DataTable with values from another table

I'm trying to search one DataTable with values from anotherDataTable using LINQ, but no progress so far... How to do it? In example below i have table, in which i search, and PlTable, which has only ...
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 ...
0
votes
4answers
160 views

Linq query “specific cast is not valid”

Following Linq to datatable query gives me error Specific cast is not valid. decimal[] temp = dt.AsEnumerable() .Select(r => new { totLen = r.Field<decimal>("Quantity") ...
-1
votes
1answer
189 views

Get particular column from datatable

I need particular columns from datatable to bind it in DataGridView. I have following column. Work1     Price     Area     que   Len ...
0
votes
0answers
125 views

Split Datatable with large column into Child Datatables columnwise with one column fixed

I have large datatable with atleast 50 columns. first column contains the description of row data i.e In 1st column, row data is the header for the rows so i want to keep the 1st column ...
0
votes
1answer
44 views

Linq To DataSet getting error

In my WinForm project, I try to access to the table in DataSet with help of LINQ. DSObjectData lDataSetObject; // DSObjectData -Strongly typed DataSet var q = from contour in ...
0
votes
2answers
427 views

Linq Query to find min and max in a datatable

I am fetching the attendance details of employees in a datatable . It looks like this Day SwipeTime 12/31/2012 11AM 12/31/2012 1PM 12/31/2012 7PM 12/31/2012 8PM 1/1/2012 2PM 1/1/2012 ...
0
votes
0answers
85 views

Dynamic LINQ( to dataset ) from text

I have about 25 tables in dataset with arround 300 columns. There is a screen to search data according to user requirements. User can select some columns to view and can add proper conditions for ...
0
votes
1answer
118 views

how to copy one column data to another column with in the same table using linq?

any one please clarify, how to copy one column data to another column with in the same table using linq. Thank you, Siva Kumar goru.
3
votes
3answers
254 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 ...
0
votes
0answers
241 views

Query dataset to filter data using LINQ without specifying specefic columns in a Dataset that is filled dynamically

Case 1 DataSet oDsParent = new DataSet(); DataTable odt = new DataTable(); odt.Columns.Add(new DataColumn("DOC_GENO_KEY", typeof(int))); odt.Columns.Add(new ...
0
votes
2answers
1k views

Select distinct Linq

I have Question and Answer tables in a database. I used Join to select questions with answers and tried to get questions and answers with LINQ. Here is my code: List<Question> newQuestionList = ...
0
votes
2answers
223 views

Linq C# Groupby on datatable

I would like to write a Linq query to apply group-by on DataTable, which outputs the result as a DataTable. I tried this code, which returns a result as var type, but I want the result in DataTable ...
0
votes
0answers
47 views

LINQ Query of User Enumeration Hangs

I have three DataTables: one populated from a .xlsx file, and the other two from .dbf files. I wanted to simplify a query against them by creating a user type to hold the results of an interim query. ...
0
votes
1answer
54 views

Count Group Ordinal in LINQ to Dataset

I have an old FoxPro program that does a SQL query which includes the following: SELECT Region, Year AS yr_qtr, ...
0
votes
0answers
119 views

LINQ TO DATASET - multiple left join query not working

Here is my query which is not working. I have tried hard but what i am missing does'nt know. It gives error - "Object instance not created". Please help. Dim tblNseFo As DataTable = ...
1
vote
0answers
42 views

Accessing relations from a DataRow when using DataSets

I am trying to access the parent of a row but it always returns null. I have two tables, one description a station and the other telling if the stations are "close" to each other. CREATE TABLE ...
0
votes
0answers
34 views

object instance not created linq to dataset

this is my query to be created in linq to dataset in vb.net 2010 strQuery = "select m.serial_no,m.trade_date,c.client_name,s.symbol_name,o.option_type_name,m.expiry_date, " & _ ...
-1
votes
2answers
118 views

LINQ - How to make a linq query with left join, group by, where clause and order by in a single query

I have googled for four days but not found a single example which contains all three keywords in a single linq query. Here is my code: select c.client_name,n.instrument_group_id,n.trade_date, ...
0
votes
1answer
127 views

Combining multiple linq queries and concatenated results into a smaller query

Can I restructure the following into a more compact linq query, ideally without the introduction of a helper function? var revPerUnitChanges = from row in ...
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 ...
0
votes
2answers
507 views

How to query DataSets using LINQ and ouput in JSON format

I have two classes in WCF Service: [DataContract] public class item { [DataMember] public string categoryid { get; set; } [DataMember] public string title ...
0
votes
0answers
70 views

Specified cast is not valid: in linq to dataset which is got from csv

I have created a Dataset from the CSV file. By using LINQ i have to query some data from that dataset but wheneever im trying to use Field method to compare or retrieving some data, it is giving ...
0
votes
1answer
747 views

Can I use Linq to DataSet to performe an insert/delete/update to a database?

I'm not talking about Linq to SQL. Just Linq to DataSet. Let's say I filled a dataset as explained here: http://support.microsoft.com/kb/314145/en-us Now, how can I use Linq to performe inserts, ...
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() ...
0
votes
1answer
333 views

linq as dataset issue with column names

How can I avoid using magic strings in a LINQ query against a datatable? This works: public IEnumerable getDisplayNames() { IEnumerable nameQry = from row in displayTable.AsEnumerable() ...
0
votes
1answer
144 views

LINQ: query returns list of empty objects

I have a query that 'selects' object of a type: Dim l as IList(Of Foo) = (From dataRow As DataRow In table.Select() Where CStr(dataRow("Column1")) = "A" ...
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", ...
0
votes
2answers
947 views

Linq Query for dataset in c#?

I have dataset which contains two table as DataTable dtFields = new DataTable("tmpFieldTable"); dtFields.Columns.Add("FieldID"); dtFields.Columns.Add("CDGroupID"); ...
0
votes
2answers
619 views

convertion issue with DateTime being null in a LINQ query

Here is the configuration of my datatables that I use in my linq query: I have 2 dataset files (all the columns of all the tables have a DataType specified and their AllowDbNull property set to True): ...
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
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
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 ...
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
606 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
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 ...
0
votes
1answer
93 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
386 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 ...
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 = ...
0
votes
0answers
302 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 ...
-1
votes
3answers
202 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 ...
0
votes
0answers
185 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 ...
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 ...

1 2 3