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
}
Post your comments / questions
Recent Article
- Fix-Gradient effect turning to gray in after effects
- How to blur an image in python?
- ModuleNotFoundError: No module named 'whois' in Python GoviralHost Without Terminal
- How to Convert Image to Pencil Sketch in Python?
- AttributeError: module 'urllib' has no attribute 'request' - Python
- How to Extract audio from video files using python?
- PermissionError: [Errno 13] Permission denied: 'shampoo_sales.csv' - Python
- [WinError 145] The directory is not empty: 'FolderPath' - Python
Related Article