我要向集合中添加一个对象,但我想知道如何更新它,如果记录存在并且不存在记录。
我要为此努力。
public void AssignProductSetting(CategoryType catType, int catId, int freeCount)
{
this.CustomSettings.Add(new ProductCustomization()
{
CategoryID = catId,
CustomizationType = catType,
DefaultFreeCount = freeCount,
ProductID = this.ProductID
});
}