我有一个包含 10K 记录的 XML 数据集,每个记录都包含一组字段。
我想知道与数据集匹配的数据库模式中哪些字段需要为空,哪些字段可以为非空。
linq 是否提供产生大交叉点的方法?
例子:
<set>
<item>
<a/>
<foo />
<b/>
<c/>
</item>
<item>
<a/>
<foo />
<b/>
<c/>
</item>
<item>
<a/>
<b/>
</item>
<item>
<a/>
<foo />
<b/>
</item>
</set>
原型:
string[] CommonFieldNames(XElement[] elements)
{
// ...
}
期望的结果:
{ "a", "b" }