Posts by Mateus Custodio • 21 points
2 posts
-
1
votes1
answer623
viewsA: Redirect to error page when entering catch
Hello, This will depend a lot on the rules of your system, but generally the common is to let the error occur in the application so that your server returns a code 500 when some error occurs. Just…
-
1
votes2
answers353
viewsA: Entity Framework search as case sensitive
Entityframework does the code-level comparison, where in C# "ANTONIO" != "antonio". I don’t understand what part of your code you are checking, but if you want to compare two strings ignoring…