I'm having an issue where a query written in linq to sql is not performing as expected mostly due to the query generated does not supply parameterization that is strongly typed to sp_executesql.
For example, I have the following basic query:
declare @command nvarchar(max),@params nvarchar(max),@empid int
set @command = N'select lastname,firstname from employees where employeeid = @empid'
set @params = N'@empid int'
set @empid = 10135
exec sp_executesql @command, @params, @empid = @empid
This query produces an optimal query plan (especially if I'm partitioning on employeeid). However, when I write my linq to sql query and capture the trace, the sql it generates is:
exec sp_executesql N'select lastname,firstname from employees where employeeid = @p0', @p0=10135
This query causes sql to scan over all partitions even though the partition key exists directly in the where clause. Can someone tell me if there is something particular linq2sql needs to force this parameterization? Is it even possible?
One thing to mention is that I'm using the dynamic linq library to do this. Not standard linq to sql...