Tagged Questions
0
votes
1answer
74 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
112 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.
0
votes
1answer
383 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
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 ...
1
vote
1answer
628 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
(
...
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;
...
7
votes
6answers
8k 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 ...