Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ユーザーが条件の数を選択した場合、クエリを作成するにはどうすればよいですか?
例: データベースに Customer テーブルがあり、ユーザーが 1 つまたは複数の都市を選択すると、選択された都市の顧客が画面に表示されます。
使用する必要がありますContains:
Contains
int[] selectedCities = {1,2,3}; var query = db.Customer.Where(c => selectedCities.Contains(c.CityId));