c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
Linq

How to find count of records using linq in asp.net?

| | ASP-NET , CSharp , Linq

In this article I will explain how to calculate the count ofthe records using Linq in asp.net. This helped me when I was to show the name when the count is greater than zero. 

 var count = (from row in mTags where row.TagId == TagId select row).Count();

                    if (count > 0)

                    {

                     // write your statement here

                    }