Wednesday, September 14, 2016

LINQ to SQL protects from SQL-injection attacks

Q.How is LINQ to SQL protected from SQL-injection attacks?
A.SQL injection has been a critical danger for traditional SQL queries shaped by concatenating client input.
LINQ to SQL avoids sql injection by utilizing SqlParameter as a part of queries.
User information is transformed into parameter values.
This methodology keeps malicious commands from being utilized from customer input

No comments:

Post a Comment