データベース内で変更を行う tolist メソッドがありますが、 Where 句が true である回数をカウントしたいと思います。Tolist はどのようにカウントを追加できますか..
// the count to see how many times getid== x.RegistrationID
List<Article> getprofile = (from x in db.Articles where getid == x.RegistrationID select x).ToList();
foreach (var items in getprofile)
{
items.articlecount = items.articlecount + 1;
db.Entry(items).State = EntityState.Modified;
db.SaveChanges();
}