私は、ユーザーが投稿できるサイトを持っています..彼らは最大10個のユニークな投稿を持つことができます. post_1,post_2 ... post_10 である 10 のデータベース フィールドがあります。post_# が空の場合、null になります。エンティティ ループ post_1 -> post_10 を使用して、Null の数を数えます。私は別の投稿が発生するのをブロックすることができます。Post_# はすべて Nullable INT です
// here i check for the RegistrationID and the first 2 Post_#
// however this code is wrong as I want to loop post 1-10 and get the Null Count
var getlistings = (from s in db.posters where getid.RegistrationID == s.RegistrationID && s.Post_1 == null && s.Post_2== null select s.RegistrationID).Count();
これを修正する方法はありますか?