LINQ to SQL is a component of .NET Framework version 3.5 that provides a run-time infrastructure for managing relational data as objects stored in Microsoft SQL Server.
I have a query that combines a join and a group, but I have a problem. The query is like: …
c# linq linq-to-sql join group-byI took a look at the "Beginner's Guide to LINQ" post here on StackOverflow (Beginners Guide to LINQ), but had …
linq linq-to-sql stored-proceduresHow can I update a record against specific id in LINQ to SQL?
linq linq-to-sqlWhat is the best way to get the Max value from a LINQ query that may return no rows? If …
c# .net linq linq-to-sqlWhen I enter an object into the DB with Linq-to-SQL can I get the id that I just inserted without …
c# .net linq linq-to-sqlShould I use LINQ's Skip() and Take() method for paging, or implement my own paging with a SQL query? Which …
sql sql-server asp.net-mvc linq-to-sql paginationI'm having some trouble figuring out how to use more than one left outer join using LINQ to SQL. I …
vb.net linq linq-to-sql tsql left-joinI am looking for a way in LINQ to match the follow SQL Query. Select max(uid) as uid, Serial_…
.net linq linq-to-sqlGiven 2 objects A and B of type T, I want to assign the properties' values in A to the same …
c# linq-to-sqlI am working with a LINQ to SQL query and have run into an issue where I have 4 optional fields …
c# asp.net linq linq-to-sql