我浏览了这个网站上的问题,但没有找到与我的特定问题相匹配的问题。
假设我有以下内容:
Product[] store1 = { new Product { Name = "apple", Code = 9, Code1="1" },
new Product { Name = "orange", Code = 4 } };
Product[] store2 = { new Product { Name = "apple", Code = 9, Code2="2" },
new Product { Name = "lemon", Code = 12 } };
和:
public class Product : IEquatable<Product>
{
public string Name { get; set; }
public int Code { get; set; }
public string Code1 { get; set; }
public string Code2 { get; set; }
public bool Equals(Product other)
{
//Check whether the compared object is null.
if (Object.ReferenceEquals(other, null)) return false;
//Check whether the compared object references the same data.
if (Object.ReferenceEquals(this, other)) return true;
//Check whether the products' properties are equal.
return Code.Equals(other.Code) && Name.Equals(other.Name);
}
// If Equals() returns true for a pair of objects
// then GetHashCode() must return the same value for these objects.
public override int GetHashCode()
{
//Get hash code for the Name field if it is not null.
int hashProductName = Name == null ? 0 : Name.GetHashCode();
//Get hash code for the Code field.
int hashProductCode = Code.GetHashCode();
//Calculate the hash code for the product.
return hashProductName ^ hashProductCode;
}
}
如何返回单个 Enumerable,其中 store1 中的数据在匹配时被 store2 中的数据覆盖,并且在不匹配时从 store2 插入到 store1 中。基本上,我正在寻找与 TSQL Merge 语句等效的 C#。
在一天结束时运行这个:
foreach (var product in union)
Console.WriteLine(product.Name + " " + product.Code + " " + product.Code1 + " " + product.Code2);
我想回来:
苹果 9 1 2
橙色 4
柠檬 12
然而,当我运行这个:
IEnumerable<Product> union = store1.Union(store2);
我得到:
苹果 9 1
橙色 4
柠檬 12
当我运行这个时:
IEnumerable<Product> union = store1.Concat(store2);
我得到:
苹果 9 1
橙色 4
苹果 9 2
柠檬 12
在此先感谢您的帮助。