The tag has no wiki summary.

learn more… | top users | synonyms

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() ...
1
vote
2answers
476 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
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, ...
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 ...
0
votes
1answer
75 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
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
251 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
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
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
0answers
83 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
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
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
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 = ...
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, " & _ ...
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
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 ...
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 ...
0
votes
0answers
3k views

LINQ to Dataset - Handle NULL in WHERE clause

I have 2 tables as the primary data; **Table - Agent** aid name ------------- 1 a 2 b 3 c 4 d 5 e **Table - Event** eid event ------------- 1 aaaa 2 bbbb 5 NULL SELECT * FROM Agent ...