Tagged Questions
LINQ to SQL is a component of .NET Framework version 3.5 that provides a run-time infrastructure for managing relational data as objects.
243
votes
10answers
78k views
Entity Framework vs LINQ to SQL
Now that .NET v3.5 SP1 has been released (along with VS2008 SP1), we now have access to the .NET entity framework.
My question is this. When trying to decide between using the Entity Framework and ...
124
votes
8answers
5k views
Learning about LINQ
Overview
One of the things I've asked a lot about on this site is LINQ. The questions I've asked have been wide and varied and often don't have much context behind them. So in an attempt to ...
85
votes
9answers
20k views
NHibernate vs LINQ to SQL
As someone who hasn't used either technology on real-world projects I wonder if anyone knows how these two complement each other and how much their functionalities overlap?
85
votes
20answers
38k views
LINQ-to-SQL vs stored procedures?
I took a look at the "Beginner's Guide to LINQ" post here on StackOverflow (http://stackoverflow.com/questions/8050/beginners-guide-to-linq), but had a follow-up question:
We're about to ramp up a ...
80
votes
33answers
7k views
Are the days of the stored procedure numbered?
In Scott Hanselman's interview of the stack overflow guys, Scott and Jeff make mention that they may be seen as heretics for declaring that the days of the stored procedure are dead. Why might they ...
77
votes
16answers
10k views
Is LINQ to SQL Dead or Alive?
Just when I make friends with LINQ to SQL, it appears as though MS is pulling the rug out from under it.
...
63
votes
6answers
59k views
What is the syntax for an inner join in linq to sql?
I'm writing a linq to sql statement & I'm just after the standard syntax for a normal inner join with an 'on' clause in C#.
ie how do you represent this in LINQ to SQL?:
select * from table1
...
62
votes
24answers
4k views
Doesn't Linq to SQL miss the point? Aren't ORM-mappers (SubSonic, etc.) sub-optimal solutions?
I'd like the community's take on some thoughts I've had about Linq to Sql and other ORM mappers.
I like Linq to Sql and the idea of expressing data access logic (or CRUD operations in general) in ...
62
votes
9answers
49k views
What's the Linq to SQL equivalent to TOP?
How do I do this
Select top 10 Foo from MyTable
in Linq to SQL?
57
votes
7answers
36k views
How to do SQL Like % in Linq?
I have a procedure in SQL that I am trying to turn into Linq:
SELECT O.Id, O.Name as Organization
FROM Organizations O
JOIN OrganizationsHierarchy OH ON O.Id=OH.OrganizationsId
where OH.Hierarchy ...
53
votes
3answers
43k views
LINQ - Left Join, Group By, and Count
Let's say I have this SQL:
SELECT p.ParentId, COUNT(c.ChildId)
FROM ParentTable p
LEFT OUTER JOIN ChildTable c ON p.ParentId = c.ChildParentId
GROUP BY p.ParentId
How can I translate this into ...
52
votes
4answers
41k views
Linq to Sql: Multiple left outer joins
I'm having some trouble figuring out how to use more than one left outer join using LINQ to SQL. I understand how to use one left outer join. I'm using VB.NET. Below is my SQL syntax.
T-SQL
...
52
votes
5answers
12k views
Best way to update LINQ to SQL classes after database schema change
I'm using LINQ to SQL classes in a project where the database design is still in a bit of flux.
Is there an easy way of synchronising the classes with the schema, or do I need to manually update the ...
46
votes
2answers
5k views
Returning IEnumerable<T> vs IQueryable<T>
what is the difference between returning iqueryable vs ienumerable.
IQueryable<Customer> custs = from c in db.Customers
where c.City == "<City>"
select c;
IEnumerable<Customer> ...
46
votes
8answers
16k views
LINQ: When to use SingleOrDefault vs. FirstOrDefault() with filtering criteria
Consider the IEnumerable extension methods SingleOrDefault() and FirstOrDefault()
MSDN documents that SingleOrDefault:
Returns the only element of a sequence, or a default value if the sequence ...
44
votes
8answers
18k views
44
votes
13answers
28k views
LINQ: Max or Default?
What is the best way to get the Max value from a LINQ query that may return no rows? If I just do
Dim x = (From y In context.MyTable _
Where y.MyField = value _
Select ...
41
votes
2answers
10k views
Can I return the 'id' field after a LINQ insert?
When I enter an object into the DB with Linq-to-SQL can I get the id that I just inserted without making another db call? I am assuming this is pretty easy, I just don't know how.
Thank you.
40
votes
4answers
3k views
How to move from Linq 2 SQL to Linq 2 Entities?
I'd like to start a reference for people who want to move from linq2sql to linq2entities and the ADO.net Entity Framework (in here called L2E). I don't want to discuss which of these two is better. I ...
39
votes
6answers
24k views
Case insensitive string compare in LINQ-to-SQL
I've read that it's unwise to use ToUpper and ToLower to perform case-insensitive string comparisons, but I see no alternative when it comes to LINQ-to-SQL. The ignoreCase and CompareOptions arguments ...
36
votes
3answers
6k views
To return IQueryable<T> or not return IQueryable<T>
I have a repository class that wraps my LINQ to SQL Data Context. The repository class is a business line class that contains all the data tier logic (and caching and such).
Here's my v1 of my repo ...
36
votes
7answers
17k views
Random row from Linq to Sql
What is the best (and fastest) way to retreive a random row using Linq to SQL when I have a condition, e.g. some field must be true ?
36
votes
9answers
14k views
What can I do to resolve a “Row not found or changed” Exception in LINQ to SQL on a SQL Server Compact Edition Database?
When executing SubmitChanges to the DataContext after updating a couple properties with a LINQ to SQL connection (against SQL Server Compact Edition) I get a "Row not found or changed." ...
34
votes
7answers
11k views
Entity Framework VS LINQ to SQL VS ADO.NET with stored procedures?
How would you rate each of them in terms of:
Performance
Speed of development
Neat, intuitive, maintainable code
Flexibility
Overall
I like my SQL and so have always been a die-hard fan of ADO.NET ...
34
votes
3answers
6k views
When should I dispose of a data context
I'm currently writing a data access layer for an application. The access layer makes extensive use of linq classes to return data. Currently in order to reflect data back to the database I've added a ...
34
votes
6answers
4k views
How are people unit testing code that uses Linq to SQL
How are people unit testing code that uses Linq to SQL?
33
votes
3answers
724 views
EntitySet - is there a sane reason that IList.Add doesn't set assigned?
There are 3 ways of adding items to most lists...
via a direct public API method, typically Add(SomeType)
via the generic IList<T>.Add(T) interface
via the non-generic IList.Add(object) ...
33
votes
16answers
2k views
Has anyone had any success in unit testing SQL stored procedures?
We’ve found that the unit tests we’ve written for our C#/C++ code have really paid off.
But we still have thousands of lines of business logic in stored procedures, which only really get tested in ...
31
votes
3answers
7k views
LINQ to SQL and the repository pattern
I feel like I'm running around in circles. I can't seem to make up my mind as to what the right repository pattern is using LINQ to SQL. If you're familiar with Rob Conery's MVC Storefront you will ...
30
votes
11answers
15k views
Conditional Linq Queries
We're working on a Log Viewer. The use will have the option to filter by user, severity, etc. In the Sql days I'd add to the query string, but I want to do it with Linq. How can I conditionally add ...
29
votes
6answers
20k views
LINQ with SQLite (linqtosql)
I have a small project that require a storage (I choose SQLite) and I got good result with the ADO DLL for .Net for Sqlite.
After the Install, I noticed that it contain a SQLLinq.dll. Before ...
28
votes
4answers
4k views
Automatically Compile Linq Queries
We've found that compiling our Linq queries is much, much faster than them having to compile each time, so we would like to start using compiled queries. The problem is that it makes code harder to ...
27
votes
4answers
12k views
TransactionScope vs Transaction in LINQ to SQL
What are the differences between the classic transaction pattern in LINQ to SQL like:
using(var context = Domain.Instance.GetContext())
{
try
{
context.Connection.Open();
...
27
votes
9answers
14k views
LINQ to SQL: Return anonymous type?
Using the simple example below, what is the best way to return results from multiple tables using Linq to Sql?
Say I have two tables:
Dogs: Name, Age, BreedId
Breeds: BreedId, BreedName
I want ...
27
votes
5answers
6k views
Best Practices for Managing Linq to SQL Dbml Files?
I've just started using Linq to SQL, and I'm wondering if anyone has any best practices they can share for managing dbml files.
How do you keep them up to date with the database?
Do you have a ...
26
votes
6answers
3k views
Is LINQ to SQL deprecated?
Back in late 2008 there was a lot of debate about the future of LINQ to SQL. Many suggested that Microsoft's investments in the Entity Framework in .NET 4.0 were a sign that LINQ to SQL had no ...
26
votes
2answers
26k views
LINQ to SQL - Left Outer Join with multiple join conditions
I have the following SQL which I am trying to translate to LINQ:
SELECT f.value
FROM period as p
LEFT OUTER JOIN facts AS f ON p.id = f.periodid AND f.otherid = 17
WHERE p.companyid = 100
I have ...
25
votes
9answers
12k views
How can you handle an IN sub-query with LINQ to SQL?
I'm a bit stuck on this. Basically I want to do something like the following SQL query in LINQ to SQL:
SELECT f.*
FROM Foo f
WHERE f.FooId IN (
SELECT fb.FooId
FROM FooBar fb
WHERE ...
24
votes
4answers
6k views
Difference Between Select and SelectMany
I've been searching the difference between those two but I couldn't find actually what I want. I need learn the difference when using LINQ To SQL but they all gave me standard array examples.
Can ...
24
votes
3answers
19k views
efficient way to implement paging
Should I use LINQ's Skip() and Take() method for paging, or implement my own paging with a SQL query?
Which is most efficient? Why would I choose one over the other?
I'm using SQL Server 2008, ...
24
votes
13answers
10k views
Connection string hell in .NET / LINQ-SQL / ASP.NET
I have a web application that comprises the following:
A web project (with a web.config file containing a connection string - but no data access code in the web project)
A data access project that ...
24
votes
3answers
10k views
How do I get the MAX row with a GROUP BY in LINQ query?
I am looking for a way in LINQ to match the follow SQL Query.
Select max(uid) as uid, Serial_Number from Table Group BY Serial_Number
Really looking for some help on this one. The above query gets ...
23
votes
4answers
2k views
A Linq to Sql - Multiple .DBML files or one .DBML File
I am working on a web application using ASP.NET 3.5. The application has hundreds of tables. I was told in a seminar that I should use one .DBML file for the entire application instead of using ...
23
votes
8answers
3k views
Do you think it's advantageous to switch to Entity Framework? [closed]
With LINQ to SQL most likely going to not get as much active development as Entity Framework do you think it's best to switch to Entity Framework?
I've personally found EF to be very clunky and hard ...
23
votes
3answers
6k views
LINQ to SQL Mapping Enum from string
I have a string column in a database table which maps to an Enum in code. In my dbml file when I set the "Type" to MyTypes.EnumType I get the following error:
Error 1 DBML1005: Mapping between ...
23
votes
4answers
6k views
LINQ to SQL - where does your DataContext live?
I'm using LINQ to SQL in a data access object library. The library is used in both web (web application/web service) and non-web (windows service) contexts. Initially, I stored the DataContext on the ...
22
votes
2answers
521 views
Pluralize English words Like LINQ to SQL Does [closed]
Possible Duplicate:
Pluralize - Singularize
The C# 4.0 (maybe older versions, but I've only tested with 4.0) Linq-to-SQL generator will pluralize your table names; even tough plurals like ...
22
votes
8answers
10k views
Linq query with nullable sum problem
from i in Db.Items
select new VotedItem
{
ItemId = i.ItemId,
Points = (from v in Db.Votes
where b.ItemId == v.ItemId
select v.Points).Sum()
}
I got this query, ...
22
votes
5answers
54k views
LINQ to SQL using GROUP BY and COUNT(DISTINCT)
I have to perform the following SQL query:
select answer_nbr, count(distinct user_nbr)
from tpoll_answer
where poll_nbr = 16
group by answer_nbr
The LINQ to SQL query
from a in tpoll_answer
...
22
votes
2answers
5k views