3
votes
How to get rid of try catch?
You can try to use some null validiation instead. I can take a LINQ to SQL example:
var user = db.Users.SingleOrDefault(u => u.Username == 3);
if (user == null)
throw new Ar …
