biz*_*zah 3 c# xml linq linq-to-xml
var doc3 = XDocument.Load(@"C:\Projects\ScanBandConfigTesting\ScanBandConfigTesting\ScanBandConfigSmall.xml");
var scanBand = new ScanBand()
{
ListOfForms = (from form in doc3.Descendants("form")
select new ScanBandForm()
{
FormTypes = form.Attribute("types").Value,
ScanBandNumber = form.Attribute("number").Value,
ListOfRows = (from row in form.Descendants("row")
select new ScanBandRow()
{
AllowSpaces = row.Element("allowSpaces").Value.ToLower() == "true",
SplitCharacter = row.Element("splitCharacter").Value,
ListOfColumns = (from column in row.Descendants("column")
select new ScanBandColumn()
{
AlwaysKey = column.Element("allwaysKey").IsEmpty ? false : column.Element("allwaysKey").Value.ToLower() == "true",
DataTypeString = column.Element("dataType").IsEmpty ? string.Empty : column.Element("dataType").Value,
MatchingFieldName = column.Element("matchingFieldName").IsEmpty ? string.Empty : column.Element("matchingFieldName").Value,
NonField = column.Element("nonField").IsEmpty ? false : column.Element("nonField").Value.ToLower() == "true",
RegularExpressionString = column.Element("regularExpression").IsEmpty ? string.Empty : column.Element("regularExpression").Value,
}).ToList()
}).ToList()
}).ToList()
};
Run Code Online (Sandbox Code Playgroud)
XML
<scanBand>
<form types="FormName" number="1">
<row>
<allowSpaces>false</allowSpaces>
<splitCharacter> </splitCharacter>
<column>
<matchingFieldName>FirstField</matchingFieldName>
<dataType>CB</dataType>
<regularExpression></regularExpression>
<allwaysKey>false</allwaysKey>
<nonField>false</nonField>
</column>
<column>
<matchingFieldName>SecondField</matchingFieldName>
<dataType>CB</dataType>
<regularExpression></regularExpression>
<allwaysKey>false</allwaysKey>
<nonField>false</nonField>
</column>
<column>
<matchingFieldName>ThirdField</matchingFieldName>
<dataType>CB</dataType>
<regularExpression></regularExpression>
<!--<allwaysKey></allwaysKey>-->
<nonField>true</nonField>
</column>
</row>
</form>
</scanBand>
Run Code Online (Sandbox Code Playgroud)
目标是当.xml文件中的某个元素不存在时,不会爆炸.我试着玩.Any(),但没有成功.
我宁愿不使用foreach迭代,而宁愿坚持使用LINQ
任何帮助深表感谢
不要使用Valueproperty来获取属性或元素的值.如果缺少节点,您将获得异常.当您投射节点(例如,到字符串)时,如果缺少节点,您将获得该类型的默认值.您还可以使用??运算符为缺少的字符串节点提供自己的默认值(默认情况下,您将获得null).
result = (string)column.Element("dataType") ?? String.Empty
Run Code Online (Sandbox Code Playgroud)
与布尔值一起使用的相同技巧 - 我得到Nullable<bool>并且如果它null(节点丢失)那么我分配false它是否不是null,然后将节点的值成功分配给非可空属性:
ListOfForms =
(from form in doc3.Descendants("form")
select new ScanBandForm() {
FormTypes = (string)form.Attribute("types"),
ScanBandNumber = (string)form.Attribute("number"),
ListOfRows =
(from row in form.Descendants("row")
select new ScanBandRow() {
AllowSpaces = (bool?)row.Element("allowSpaces") ?? false,
SplitCharacter = (string)row.Element("splitCharacter"),
ListOfColumns =
(from column in row.Descendants("column")
select new ScanBandColumn() {
AlwaysKey = (bool?)column.Element("allwaysKey") ?? false,
DataTypeString = (string)column.Element("dataType") ?? String.Empty,
MatchingFieldName = (string)column.Element("matchingFieldName") ?? String.Empty,
NonField = (bool?)column.Element("nonField") ?? false,
RegularExpressionString = (string)column.Element("regularExpression") ?? String.Empty,
}).ToList()
}).ToList()
}).ToList();
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1431 次 |
| 最近记录: |