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

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

從對象列表中找到唯一對象的最簡單方法

從對象列表中找到唯一對象的最簡單方法

C#
ITMISS 2022-10-23 15:06:05
在我的項目中,我有兩個實體,第一個是Business entity(BE)來自客戶端(或)客戶,另一個Data Entity(DE)是來自數(shù)據(jù)庫。收貨.cspublic class GoodsReceipt    {        public Guid Id { get; set; }        public string PurchaseOrderId { get; set; }        public string Note { get; set; }        public virtual ICollection<GoodsReceiptProduct> GoodsReceiptProducts { get; set; }    }GoodsReceiptProduct.cspublic class GoodsReceiptProduct    {        public Guid Id { get; set; }        public Guid GoodsReceiptId { get; set; }        public Guid PurchaseOrderId { get; set; }        public Guid ProductId { get; set; }    }我的要求是獲取新項目是否在集合中added或集合updated中。而在 GoodsReceiptProduct 中對于列表中的所有對象來說都是唯一的。deletedGoodsReceiptProductsPurchaseOrderId用戶將BE GoodsReceipt連同一組GoodsReceiptProduct. 那么從列表中獲取該唯一對象DE的可能方法是什么,在將該列表與服務(wù)器上的現(xiàn)有列表進行比較時,該對象可能會被添加、更新或刪除。
查看完整描述

2 回答

?
倚天杖

TA貢獻1828條經(jīng)驗 獲得超3個贊

我猜您想比較 2 個列表并確定哪些記錄是新添加的、刪除的或保持不變的。而不是找到一個獨特的對象。


為此,您可以使用except & Intersect


例如:


List<GoodsReceiptProduct> existingListInDataEntity = GetExistingList();

List<GoodsReceiptProduct> modifiedListInBusinessEntity = GetBusinessList();


var newAddedItems = modifiedListInBusinessEntity.Except(existingListInDataEntity);

var deletedItems = existingListInDataEntity.Except(modifiedListInBusinessEntity);

var sameItems = modifiedListInBusinessEntity.Intersect(existingListInDataEntity);


查看完整回答
反對 回復(fù) 2022-10-23
?
慕森王

TA貢獻1777條經(jīng)驗 獲得超3個贊

Distinct()在 IEnumerables 中使用


例如:


var YourList = List<GoodsReceiptProduct>();


//YourList = propulate the list here;


var UniqueList = YourList.Distinct();


查看完整回答
反對 回復(fù) 2022-10-23
  • 2 回答
  • 0 關(guān)注
  • 88 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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