第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

通過 id 列表獲取實(shí)體并檢查它們是否存在

通過 id 列表獲取實(shí)體并檢查它們是否存在

C#
慕妹3146593 2022-12-24 10:29:55
想象一下我有這樣的課程:// DTOpublic class RequestrDto{    public string Name { get; set; }    public ICollection<int> CityIds { get; set; }}// ENTITY// PLACEpublic class Place{    public int Id { get; set; }    public string Name { get; set; }    public List<City> Cities { get; set; }}// CITYpublic class City{    public int Id { get; set; }    public int? PlaceId { get; set; }    public string Name { get; set; }    public string Code { get; set; }    public List<City> Cities { get; set; }    public Place Place { get; set; }}我想檢查數(shù)據(jù)庫中是否存在城市并添加到新創(chuàng)建的實(shí)體類中,該實(shí)體類將被添加到數(shù)據(jù)庫中。所以,我可以這樣做:var placeEntity = new Place() {    Name = RequestrDto.Name;}var cities = _context.Cities.Where(x => request.CityIds.Contains(x.Id)).ToList();placeEntity.Cities.AddRange(cities);如何獲取城市并檢查它們是否在數(shù)據(jù)庫中?我知道我可以通過 foreach 對其進(jìn)行迭代,但我正在尋找一種奇特的方式。
查看完整描述

1 回答

?
慕村9548890

TA貢獻(xiàn)1884條經(jīng)驗(yàn) 獲得超4個(gè)贊

您可以使用

產(chǎn)生兩個(gè)序列的集合差異。


var cities = _context.Cities.Where(x => request.CityIds.Contains(x.Id))

                            .ToList();


var ids = cities.Select(x => x.Id); 

var missing = request.CityIds.Except(ids);


// or


var missing = request.CityIds.Except(cities.Select(x => x.Id)); 


查看完整回答
反對 回復(fù) 2022-12-24
  • 1 回答
  • 0 關(guān)注
  • 104 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號