January 2012
3 posts
Look what ReSharper just taught me
You can rewrite:
var result = object.Where(m => m.Id == id).FirstOrDefault()
as
var result = object.FirstOrDefault(m => m.Id == id);
Thank you ReSharper
1 tag
Anonymous asked: if i ask a question, where does it go and how do i see the answer? is this powered by a magic 8 ball?