views:

240

answers:

3

I'm creating a custom MembershipProvider for an ASP.NET MVC website, and I was planning on using LINQ to SQL for the internals, as I am for the rest of the website. Are there any issues with this, specifically any security issues it causes?

A: 

Are you creating a membership provider and not using the default installation I see no problem.

Paulo Santos
I'm not sure I understand your answer. The first part seems to be a question, followed immediately by a statement.
C. Ross
A: 

Depending on your implementation there should be no more of a security risk than writing the calls in TSQL or stored procedures.

Burt
A: 

Linq-To-SQL prevents SQL injection attacks; so any potential holes would normally be the result of logical errors created in the customer membership provider.

George Stocker