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.
Using the simple example below, what is the best way to return results from multiple tables using Linq to SQL? …
c# linq linq-to-sqlI'm new to LINQ and want to know how to execute multiple where clause. This is what I want to …
linq linq-to-sqlAssuming I have a left outer join as such: from f in Foo join b in Bar on f.Foo_…
c# linq-to-sql lambdaLet's say I have this SQL: SELECT p.ParentId, COUNT(c.ChildId) FROM ParentTable p LEFT OUTER JOIN ChildTable c …
c# .net linq linq-to-sqlI have a table, 'lasttraces', with the following fields. Id, AccountId, Version, DownloadNo, Date The data looks like this: 28092|15240000|1.0.7.1782|2009040004731|2009-01…
c# .net linq linq-to-sqlHere's an example of the query I'm trying to convert to LINQ: SELECT * FROM Users WHERE Users.lastname LIKE '%…
c# linq linq-to-sqlSo, per Mehrdad's answer to a related question, I get it that a "proper" database table column doesn't store a …
sql linq linq-to-sql database-design linq-to-entitiesHow would you rate each of them in terms of: Performance Speed of development Neat, intuitive, maintainable code Flexibility Overall …
sql linq-to-sql entity-framework ado.net linq-to-entitiesHow do I do this Select top 10 Foo from MyTable in Linq to SQL?
linq-to-sqlI'm wondering what is the benefit to use SELECT WITH (NOLOCK) on a table if the only other queries affecting …
sql-server tsql linq-to-sql