Is there any way from the LINQ to SQL designer in Visual Studio to specify that a stored procedure parameter should be an enum rather than a string? The underlying database stores nvarchars representing enums from my C# application. I can modify the appropriate row for my table in the designer to specify the enum type. However, I don't see any way to do this for stored procedures.
Read More...