0
votes
1answer
19 views
LinqDataSource - how do I select rows based on the current UserId?
Hello,
I have a Grid View control that displays data based on what is returned by the LinqDataSource. The LinqDataSource selects data depending on the date chosen in a date contr …
0
votes
1answer
80 views
LinqDataSource does not support the Select property when the Delete, Insert or Update operations are enabled
Hello,
I am getting this error when clicking the Delete button / link in a GridView control
LinqDataSource [DataSource] does not support the Select property when the Delete, Ins …
3
votes
3answers
304 views
LINQ Outer Joins Dynamic OrderBy
In a Linq Statement like the following (narrowed down to relevant parts for the question):
var sites = from s in DataContext.Sites
join add in DataContext.Address
…
1
vote
2answers
73 views
Linq to SQL data source best practice
When using linq to SQL in my project I am currently creating the data context as late as possible in the code execution and disposing it as soon as possible. This results in the da …
0
votes
1answer
60 views
Bitwise operators LinqDataSource Where
Hi,
I have a byte column called 'Type' in my MS Server database. On my Asp.net page I have a ListView and a LinqDataSource. The 'Type' column is different enum flags.
I would lik …
2
votes
2answers
162 views
Ordinal Position of Element in IENumerable Collection (Linq to XMl )
How do I embed the ordinal number of element as its attribute in this linq query.
var AllSections = from s in xmlDoc.Descendants("section")
select new
…
0
votes
0answers
21 views
LinqDataSource wizard table list is not refreshing after updating LinqToSql classes
I have changed my dbml file like this.
I have deleted all the tables and stored procs.
I added new tables and stored procs from a new database.
In the code-behind, I can access …
0
votes
3answers
261 views
I am using linq datasource, how can i configure a where expression
RequestDate != @RequestDate = null
Gives me an ERROR:
The string was not recognized as a valid DateTime. There is a unknown word starting at index 0.
0
votes
0answers
45 views
Linqdatasource group by problem with multiple table
I'm using linqdatasource for displaying data in listview (nested because of grouping) control. I want to display data from more than one table.
I'm using VWDExpress.
3
votes
2answers
1k views
ASP.NET Dynamic Data Add Additional Filter Criteria to Page
How should I be adding additional search/filter criteria to a Dynamic Data Web Application?
I created a Dynamic Data Web Application using the Northwind database and I am using a …
0
votes
2answers
271 views
The name xxx does not exist in the current context. What am I doing wrong?
var result = from lr in _db.LeaveRequest
join th in _db.TotalHourslu
on lr.TotalHoursEffect
equals th.Minutesselect
…
0
votes
1answer
324 views
Linqdatasource and relational data problem
I have a problem with linqdatasource. I have gridview in my page and I set it's datasource to linqdatasource,also I set AllowPaging="True" , AllowSorting="True".
<asp:GridView …
1
vote
0answers
95 views
Get return value from SP when using LINQDatasource
Hi All,
I have a Dynamic Data Website for edit, update and delete data. As we know, the dynamic data website uses LINQDatasource control for DB operations. For delete, i am using …
0
votes
1answer
577 views
Insert record with EmptyDataTemplate in asp:ListView
I have an EmptyDataTemplate in my asp:ListView which I want to use to insert a new record.
I have Inserting working in the InsertItemTemplate... I thought I could copy the InsertI …
1
vote
1answer
111 views
LinqDataSource query help
Hi All,
I know LINQ doesn't have the SQL IN clause but rather uses "contains". Can I use this on a LinqDataSource? I want to write a simple query that is equivelent to this:
SELECT …
