vote up 2 vote down star

What is the best way to avoid SQL injection on MSSQL Server from C# code using Linq?

Should you use a function to strip of security issues or is it handled by the framework?

flag

1 Answer

vote up 6 vote down check

Errr, you cant SQL inject using LINQ. Behind the scenes LINQ to SQL converts values into a parameterized query.

So yes it is handled by the framework.

link|flag
1  
Technically speaking you can still have SQL injection issues if you use the ExecuteCommand or call stored procedures that use sp_execute and combine string input together without proper encoding. – DamienG Oct 30 '08 at 18:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.