All columns that contain text in the database used to be nvarchar but we converted them to varchar for performance reasons. I am now left with all my SqlParameters still using SqlDbType.NVarChar and I want to change them to SqlDbType.VarChar but I don't want to waste time doing it if I won't see any benefits from changing them. Is it worth changing them or am I wasting my time?
I am not interested in which one is better between varchar and nvarchar. I want to know if changing the SqlParameter.SqlDbType from SqlDbType.NVarChar to SqlDbType.VarChar will make any difference if all the fields in the database are varchars.