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'm writing a LINQ to SQL statement, and I'm after the standard syntax for a normal inner join with an …
c# .net sql linq-to-sql joinI've been searching the difference between Select and SelectMany but I haven't been able to find a suitable answer. I …
c# linq-to-sql linqI want to add some rows to a database using Linq to SQL, but I want to make a "custom …
c# linq linq-to-sql todictionaryIs there a way to compare two DateTime variables in Linq2Sql but to disregard the Time part. The app …
c# .net database entity-framework linq-to-sqlConsider the IEnumerable extension methods SingleOrDefault() and FirstOrDefault() MSDN documents that SingleOrDefault: Returns the only element of a sequence, or …
.net linq linq-to-sqlNow that .NET v3.5 SP1 has been released (along with VS2008 SP1), we now have access to the .NET entity …
.net entity-framework linq-to-sqlHow do you select all rows when doing linq to sql? Select * From TableA In both query syntax and method …
linq-to-sqlWhat is the difference between returning IQueryable<T> vs. IEnumerable<T>, when should one be preferred …
c# linq linq-to-sql ienumerable iqueryableI've been using this piece of code I've written and it's working in this most unclear manner. I wish to …
asp.net linq-to-sql sql-server-2008Given: A table named TABLE_1 with the following columns: ID ColumnA ColumnB ColumnC I have SQL query where TABLE_1 joins …
c# linq-to-sql left-join multiple-columns