Do Entity Framework functions automatically escape input to protect against injection?
In my SQL DB layer, I have a SPROC that takes an nvarchar(max) as input.
In my EDMX, the SPROC is mapped to a function import as methodName(string input)
Do I need to manually escape the input to protect against injection or does Entity Framework do this automatically?