Linq

where condition in linq c#

where condition in linq c#, someone asked me to explain?

where condition in linq c#. you can filter the record using where condition with keyword operator =

var tagsInDb = db.mytable.Where(a => a.PostId == post.PostId);

Post your comments / questions