I have two tables: Designs and Urls.A Design can be related to many URLs through a Guid (which is not the primary key of the Design table, as a URL can be related to other tables as well through the s
I\'m having a hard time with this SQL Query. I need to convert this to LINQ but n o luck so far. Linqer simply fails.
I am in the process of translating an ASP.NET website I made from using table adapters and stored procedures to using Linq to SQL (.NET 4), because it makes the whole thing so much more maintainable.
I\'m trying to do a group by in LINQ to SQL but I want to base the grouping on the text description of my ENUM items.
I\'ve gotten the go-ahead a开发者_Python百科t work to implement LINQ to SQL for a new module in our ASP.NET app.I forget the best way to handle the DataContext required to retrieve objects; should I c
It was difficult to choose correct title, but here is the problem: I\'ve an application with simple logic, that gets data from TFS, iterates over \"item开发者_如何学Cs\" and updates local DB with the
For the following query I get a LINQ to SQL exception. var terms = \"bob town\".Split(\' \'); var q = from m in db.Monument
Lets say I have an entity called Department that I retrieved from MyDataContext.Department has an association called Employees.
In a simple test form, I have a listbox and a textbox.The form is bound to a datacontext, which has a single table. The listbox has two items, and is not bound.The textbox is bound to the datacontext.
I have a cla开发者_开发问答ss with a list of a 2nd class which has a list of dates.What is the best way to get the entire list of dates in the top level class?