Error!
Success!

Does LINQ to SQL eliminate the possibility of SQL Injection

0
kicks

Does LINQ to SQL eliminate the possibility of SQL Injection  (Unpublished)

By default, LINQ to SQL uses parameterized queries rather than concatenated strings when executing your LINQ queries. As a result, if a user tries to perform SQL Injection by improperly escaping parts of the SQL, the escape is considered part of the parameter rather than part of the query and thus avoids the injection. However, as we discussed in chapter 8 of LINQ in Action, LINQ to SQL greatly reduces the possibility of SQL Injection, but doesn't completely eliminate it. For example, if you are using ...


Kicked By:
Drop Kicked By: