Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
7k 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 custom page for the ...
4
votes
3answers
1k 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 on ...
3
votes
4answers
953 views

Better way of refreshing DataGridView.DataSource

Currently I have a DataGridView in my app which I fill from my Linq-to-SQL classes like so ... /// <summary> /// Delegate to update datagrid, fixes threading issue /// ...
3
votes
3answers
2k views

LinqDataSource does not support the Select property when the Delete, Insert or Update operations are enabled

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, Insert or Update operations are ...
3
votes
2answers
2k views

Need a good example of LinqDataSource in code, not markup

Anyone have a good example of setting up a LinqDataSource entirely in code? I don't need help writing the LINQ query. I just need help setting up the flow of the code. The reason I want to do it in ...
3
votes
4answers
920 views

Can I get the T-SQL query generated from a LinqDataSource?

I´m using the LinqDataSource to populate a grid. But now I need the SQL query that the LinqDataSource generates, to pass around throught methods (no, I can't modify the methods to not need a SQL ...
2
votes
3answers
53 views

LINQ: How to rewrite WHERE clause to avoid: Local sequence cannot be used in LINQ to SQL

My Linq query gives the error: Local sequence cannot be used in LINQ to SQL implementations of query operators except the Contains operator var query = from product in dc.catalog where ...
2
votes
1answer
56 views

Should I trust LinqDataSource to clean up properly?

Taking my first stab as using the OnSelecting method of LinqDataSource so that I can specify a more complex query, I wrote this: protected void CategoriesDataSource_OnSelecting(object sender, ...
2
votes
2answers
120 views

Dropdown List using LinqDataSource Formating Issue

I have a dropdownlist which is bound to one of the LDS. Here is the code for that: <asp:DropDownList ID="ddlEntities" runat="server" DataSourceID="LinqDataSource3"> ...
2
votes
1answer
156 views

LinqDataSource throws a ChangeConflictException for an unknown reason

I'm currently facing an odd problem with an old project. The project uses a FormView to edit data. The FormView is bound to a LinqDataSource. Upon updating the edited object, I do receive a ...
2
votes
1answer
217 views

How to lock a SQL record with LinqToSql?

I'm using a LinqToSql DataContext and I want to lock a record for being opened in write mode. Meaning while one user in Hong Kong has a record open in write mode, another user in France can't open ...
2
votes
1answer
653 views

LinqDataSource DataContext Object Not Showing In Configure Data Source

I added a LinqToSQL Class to my project and put it in my App_code folder. I then added a LinqDataSource to a new web page and tried to configure it to use this class, but it does not show up as an ...
2
votes
1answer
208 views

Retrieve data from LinqDataSource before Skip and Take happen?

I have a GridView that uses LinqDataSource. The GridView has default paging enable. I would like to retrieve the data from LinqDataSource before the paging takes place so that I could calculate the ...
2
votes
1answer
907 views

LINQDataSource - Query Multiple Tables?

I have a database and I've created a DBML Linq-to-SQL file to represent this database. I've created a new aspx page and dropped a linqdatasource and a formview control onto it. When I configure the ...
2
votes
2answers
302 views

No parameterless constructer defined for this object when putting EnabledDelete=true on LinqDataSource

If I have a LinqDataSource without EnabledDelete, EnabledUpdate, EnabledInsert, it works fine, but as soon as I add those properties to the data source, I get the error: No parameterless constructor ...
2
votes
1answer
300 views

How can I prevent the LinqDataSource Where clause from resetting on postback?

I'm trying to set the where clause on a LinqDataSource object bound to a GridView programmatically on a button click, but when the GridView rebinds data (for instance, when the user sorts) the Where ...
2
votes
2answers
1k 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 { ...
2
votes
2answers
637 views

Using Linqdatasource and groupby property

I have a Linqdatasource that groups the records in table:Routing by a field called SubmitTo. My select statement is this - "new (key as SubmitTo, Count() as Count, it as Routings)". Now the SubmitTo ...
2
votes
2answers
1k views

How to modify Bind(“MyValue”) in asp.net

I'm having headache with Time values and multiple time zones. I'm storing new DateTime values in UTC time, but I face problem when I try to modify them using LinqDataSource and GridView. I can easily ...
1
vote
3answers
64 views

LINQ: LinqDataSource How to do column Select in codebehind?

<asp:LinqDataSource ContextTypeName="ExampleDataContext" TableName="Products" Select="new(Key as ProductCategory, Average(Price) as AvePrice)" ID="LinqDataSource1" ...
1
vote
1answer
119 views

LinqDatasource Where Clause on Field belong to a Linked Table via Foreign Key

I have 2 Tables, Emails and Owners that are linked with a foreign key . Emails has a Column Owner_FID which is a FK to Owner_ID of Owners. I have a Linq Datasource for the Emails Table and i want to ...
1
vote
2answers
80 views

How to regenerate grid data on various button click event of a page while we are using telerik grid with LinqDataSource

I am using Telerik grid control and LinqDataSource control on a page. code : <asp:LinqDataSource ID="ldsFillGridData" runat="server" OnSelecting="ldsFillGridData_Selecting" /> all things ...
1
vote
1answer
447 views

ContextTextType and TableName for LinqDataSource when data source is List<string>

I have a LinqDataSource defined like this: <asp:LinqDataSource ID="LinqDataSource1" runat="server" OnSelecting="LinqDataSource_FileSelecting"></asp:LinqDataSource> In ...
1
vote
1answer
326 views

LinqDataSource - is default insert parameter with dbnull value possible?

I need to do some simple (or so it seems) databinding and CRUD type operations on an ASP.Net page. I'm using a LinqDataSource connected with a FormView. The table that i'm trying to insert into has ...
1
vote
2answers
717 views

Binding LinqDataSource from code-behind to Gridview

i have a grdidview control on the .aspx page and i am trying to connect dynamically from code behind and bind the gridview but somehow it throwing me an error... what is wrong with this code? any ...
1
vote
1answer
319 views

Getting Xml Columns from LinqDataSource to appear in a GridView

I have a LinqDataSource and a GridView displaying a table. Columns of type xml don't show up. I'd like them to show up something like they do in Sql Server query outputs, with a link to display the ...
1
vote
2answers
848 views

LinqDataSource dynamic parameters - forcing an OR with WhereParameters

In my "selecting" statement I need to add two dynamic parameters when using the LinqDataSource's WhereParameters collection: e.WhereParameters.Add(param, True) However, the system adds these ...
1
vote
1answer
422 views

On ASP.NET ListView with LinqDataSource, display the data when the search button clicked

I have a ListView setup with LinqDataSource and a button that triggers search function. To avoid display data on page_load, I set ListView's DataSourceID in the Click event of the search button, bind ...
1
vote
1answer
235 views

ASP.NET GridView Sort?

I'm performing a query with a sort in the Selecting event of the LinqDataSource. I'm then casting my query to a list and assigning it to the result. I'm using this data source in an ASP.NET gridview. ...
1
vote
2answers
844 views

Can't “Enable Editing” on my gridview

I'm trying to connect my gridview to a LinqDataSource to select, update, insert and delete records. I am able to get into edit mode and cancel out of edit mode but when I click update nothing ...
1
vote
1answer
2k views

ASP.Net: Sorting, GridView BoundColumn vs. TemplateColumn

With everything else being equal, a BoundField column in an asp:GridView is sortable, but a TemplateField column is not. Why is that? <asp:LinqDataSource ID="someDataSource" ...
1
vote
1answer
2k views

ASP.NET LinqDataSource WHERE clause

I need to make a WHERE clause for my LinqDataSource which depends on the currently logged in user. Of course, I have access to the currently logged in user in the code-behind and I specifically need ...
1
vote
1answer
96 views

Return Modified Fields in LinqDataSource

I have a LinqDataSource like this one : <asp:LinqDataSource ID="linqDSUsers" runat="server" ContextTypeName="Repository.BBDatabaseDataContext" Select="new (UserID,FirstName,LastName)" ...
1
vote
1answer
215 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 the new tables and ...
1
vote
2answers
664 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 data context being ...
1
vote
1answer
648 views

LinqDataSource query help

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 * FROM tableA WHERE ...
1
vote
1answer
502 views

Updating LinqDataSource from separate DataContext

I want to update one LinqDataSource with a record retrieved from a different DataContext. The problem is that the DataContext of the LinqDataSource doesn't seem to be made public so I can't get access ...
1
vote
1answer
2k views

Rebinding GridView using LinqDataSource

I have a gridview that is using a LinqDataSource for it's datasource. I've added a FooterTemplate so users can insert new records. The Add Button has a command name that puts the values in a ...
1
vote
1answer
3k views

LinkDataSource can't load DataContext

I am trying to populate a dropdown list control on an web page using VS 2008 and keep getting an error that it can't load the DataContext. My backend is a SQLx server 2005 DB. I create a Link To SQL ...
0
votes
0answers
27 views

ASP.Net ListView InsertItemTemplate + JQuery Dialog

I am attempting to have the InsertItemTemplate content pop up into a JQuery dialog window when I click a button. This is my code so far: <asp:ListView ID="lstOrderIssues" runat="server" ...
0
votes
1answer
42 views

LinqDataSource: How to assign values to where parameters in code?

I have the following WhereParameters for LinqDataSource1 in my .aspx file: <WhereParameters> <asp:Parameter Name="key1" Type="String" /> <asp:Parameter Name="key2" ...
0
votes
1answer
45 views

LINQ: What is the LinqDataSource equivalent of “adapter.Fill(ds)”?

I am trying to use LinqDataSource instead of using the SQL dataset. Currently, if I want to update my GridView, I just declare a DataSet ds = new DataSet(); then I adapter.Fill(ds); ...
0
votes
1answer
43 views

LINQ: How to refresh a GridView bound to LinqDataSource?

I retrieve keywords from a textbox and want to refresh a GridView that is bound to a LinqDataSource. I assume I can do this in the OnTextChanged function as follows protected void ...
0
votes
2answers
175 views

Adding LinqDataSource Where Parameters in Code-Behind

Reading simple table using LinqDataSource. Table name is ZipCode with three columns: ZipCode, City, State). Read works fine with no filter, but when I add "Where" parameters to LinqDataSource, it ...
0
votes
2answers
55 views

Can't get LinqDataSource to recognize deatil relations

what I have are two tables, Publication and DTPersonnel. Publication has a primary Key and the other (DTPersonnel) has a field that is link back Publication. I sent up a DBML layout for my ...
0
votes
1answer
137 views

LinqDataSource class example

Just starting to look into using LinqDataSource for a GridView and I’m looking for a few more examples on how to set up my data source. I am hoping later on to use it against a SharePoint List but ...
0
votes
0answers
83 views

Creating custom class in LINQ to SQL, which fully imitate System.Data.Linq.Table<T> functionality

I want to create custom L2S entity class, that represents data not from 1 table. For example I have 2 tables: Accounts: (ID, Name) Users: (ID, Name, AccountID) There are corresponding classes and ...
0
votes
3answers
66 views

exception when I tried to update my gridview in asp.net

when I tried to update my gridview which is connected using <asp:LinqDataSource> and Enabling update and delete in this data Source I got an exception told me that : javaScript runtime ...
0
votes
0answers
62 views

Changing a calculated property via a LinqDataSource

Suppose we have these stripped down classes, generated using SqlMetal: public class Car { string ID; int FrontLeftAxleId; int FrontRightAxleId; int RearLeftAxleId; int ...
0
votes
2answers
340 views

Single web page, LinqDataSource, GridView to edit multiple data tables

Problem is - new application, customer wants Linq, .NET 4.0, many data tables that are "categories" and "types" - simple data tables that are usually two fields: ID and Name (or description) Instead ...

1 2 3