I have this code:
public article GetArticleByWebSite(string webSite)
{
using (var context = new开发者_如何学运维 ceopolandEntities())
{
return context.article.Where(a => a.WebSite == webSite).First();
}
}
What's the best way to check if article isn't empty before calling First()
?
A try catch block or introduce a variable and check how many articles are there?
Try .FirstOrDefault();
. It will return null
if nothing is found.
精彩评论