1
vote
What is more readable?
The first option is more readable to a wider range of people. The second option has an 'entry barrier' in that the reader might or might know and understand LINQ. It is more succinct, and might be …
0
votes
Should I agree to ban the “using” directive from my c# projects?
Instead of 'copy-n-paste' I call it 'copy-n-rape' because the code is abused 99.9% of the times when it is put through this process. So there, that's my answer to your colleague's #1 justification …
1
vote
c# WebRequest class and headers
WebRequest being abstract (and since any inheriting class must override the Headers property). …
1
vote
Validation in the middle tier
The approach you suggest seems to indicate that the set of validation should not be applied always. Which is ok. I've seen plenty of rules and validations we want 'most of the times' but not really …
10
votes
In C#: Add Quotes around string in a comma delimited list of strings
string s = "A,B,C";
string replaced = "'"+s.Replace(",", "','")+"'";
Thanks for the comments, I had missed the external quotes.
Of course.. if the source was an em …
2
votes
How to rollback a transaction in Entity Framework.
I believe (but I am no long time expert in EF) that until the call to context.SaveChanges goes through, the transaction is not started. I'd expect an Exception from that call would automatically ro …
