如何将使用密钥的XML反序列化为对象

问题描述 投票:1回答:3

我有一个ASP.NET核心2.1 MVC项目,我正在从Serlilog MSSqlServr Sink中检索数据,该数据将属性字段中的值存储为XML数据类型。我想将该数据反序列化为视图模型,因此我可以将各个元素作为数据呈现在视图中。

以下是数据库“日志”表中“属性”字段中的XML示例。

<properties>
  <property key="EventId">
    <structure type="">
      <property key="Id">404</property>
    </structure>
  </property>
  <property key="ActionId">0592d9e8-f4fd-459f-96b3-2b787d01a754</property>
  <property key="ActionName">API.Controllers.CompletionsController.GetCompletion (PS.API)</property>
  <property key="RequestId">0HLJ2IL5A9:00000001</property>
  <property key="RequestPath">/api/completions/0</property>
  <property key="CorrelationId" />
  <property key="ConnectionId">0HLJ2IL59</property>
  <property key="MachineName">RD0003FF1</property>
  <property key="ThreadId">117</property>
</properties>

我为解码设置了一个类,如下所示;

using System.Xml.Serialization;

namespace PS.Models.ApiLogs
{
    [XmlRoot("properties")]
    public class LogProperties
    {

        [XmlElement("SourceContext")]
        public string SourceContext { get; set; }

        [XmlElement("ActionId")]
        public string ActionId { get; set; }

        [XmlElement("ActionName")]
        public string ActionName { get; set; }

        [XmlElement("RequestId")]
        public string RequestId { get; set; }

        [XmlElement("RequestPath")]
        public string RequestPath { get; set; }

        [XmlElement("CorrelationId")]
        public string CorrelationId { get; set; }

        [XmlElement("ConnectionId")]
        public string ConnectionId { get; set; }

        [XmlElement("MachineName")]
        public string MachineName { get; set; }

        [XmlElement("ThreadId")]
        public string ThreadId { get; set; }

    }
}

在我的控制器中,我有以下代码;

        var serializer = new XmlSerializer(typeof(LogProperties));

        LogProperties logProperties;

        using (TextReader reader = new StringReader(log.Properties))
        {
            logProperties = (LogProperties)serializer.Deserialize(reader);
        }

但是logProperties变量不包含任何内容,因此我假设我在LogProperties类中的XML属性不正确。

我花了很多时间寻找解决方案,并在输入此问题时查看了所有相关帖子,但我无法找到XML使用“property key =”或如何处理“ key =“属性属性(如果这是正确的术语)

有任何想法吗?

[更新2/21/19]

我最终使用@jdweng的建议,因为它是最不复杂的,并且给了我我想要的东西。

我创建了2个类(因为我喜欢将我的类文件保存为个人首选项)。课程如下;

using System.Collections.Generic;
using System.Xml.Serialization;

namespace PS.Models.ApiLogs
{
    [XmlRoot("properties")]
    public class LogProperties
    {
        [XmlElement("property")]
        public List<LogProperty> Property { get; set; }

    }
}

using System.Xml.Serialization;

namespace PS.Models.ApiLogs
{
    [XmlRoot("property")]
    public class LogProperty
    {
        [XmlAttribute("key")]
        public string Key { get; set; }
        [XmlText]
        public string Value { get; set; }
    }
}

然后在我的控制器中,我有以下的Detail方法;

        var response = await _client.GetLogAsync(id, $"api/logs", token);
        if (response == null)
        {
            return NotFound($"Unable to find a record for Log ID [{id}].");
        }

        var log = _mapper.Map<DetailLogViewModel>(response.Record);

        var serializer = new XmlSerializer(typeof(LogProperties));

        LogProperties logProperties;

        using (TextReader reader = new StringReader(log.Properties))
        {
            logProperties = (LogProperties)serializer.Deserialize(reader);
        }

        var logWithProperties = new DetailLogWithPropertiesViewModel
        {
            Id = log.Id,
            Message = log.Message,
            TimeStamp = log.TimeStamp,
            Exception = log.Exception,
            XmlProperties = logProperties 
        };


        return View(logWithProperties);

我的DetailLogWithPropertiesViewModel如下;

public class DetailLogWithPropertiesViewModel
{
    public int Id { get; set; }

    [Display(Name = "Message")]
    public string Message { get; set; }

    [Display(Name = "Level")]

    public string Level { get; set; }

    [Display(Name = "Time Stamp")]
    public DateTimeOffset TimeStamp { get; set; }

    [Display(Name = "Exception")]
    public string Exception { get; set; }

    [Display(Name = "Properties")]
    public string Properties { get; set; }

    public LogProperties XmlProperties { get; set; }

}

我的Detail.cshtml的相关部分如下;

<div class="card-body ml3 mr3">


    @foreach (var logProperty in Model.XmlProperties.Property)
    {
        <div class="row">
            <div class="col-4 bg-light border border-primary">
                <span class="font-weight-bold">@logProperty.Key</span>
            </div>
            <div class="col-8 bg-secondary border border-left-0 border-primary">
                <span>@logProperty.Value</span>
            </div>
        </div>


    }

</div>

由Serilog生成并存储在MS SQL数据库中的XML具有可变数量的属性,我现在理解这些属性表示为键/值对。因此,此方法允许我确保所有提供的属性都显示在网站的日志查看器中。

c# xml xml-parsing xmlserializer asp.net-core-2.1
3个回答
1
投票

试试以下:

    [XmlRoot("properties")]
    public class LogProperties
    {

        [XmlElement("property")]
        public List<LogProperty> property { get; set; }

    }
    [XmlRoot("property")]
    public class LogProperty
    {
        [XmlAttribute("key")]
        public string key { get; set; }
        [XmlText]
        public string value { get; set; }
    }

0
投票

1)将XML复制到剪贴板... 2)...打开Visual Studio并创建一个空的cs文件... 3)...转到EDIT> Paste Special> XML到类(可能需要安装ASP.NET webdevelopment)... 3)...将导致此代码:

/// <remarks/>
[System.SerializableAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false)]
public partial class properties
{

    private propertiesProperty[] propertyField;

    /// <remarks/>
    [System.Xml.Serialization.XmlElementAttribute("property")]
    public propertiesProperty[] property
    {
        get
        {
            return this.propertyField;
        }
        set
        {
            this.propertyField = value;
        }
    }
}

/// <remarks/>
[System.SerializableAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
public partial class propertiesProperty
{

    private propertiesPropertyStructure structureField;

    private string[] textField;

    private string keyField;

    /// <remarks/>
    public propertiesPropertyStructure structure
    {
        get
        {
            return this.structureField;
        }
        set
        {
            this.structureField = value;
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.XmlTextAttribute()]
    public string[] Text
    {
        get
        {
            return this.textField;
        }
        set
        {
            this.textField = value;
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.XmlAttributeAttribute()]
    public string key
    {
        get
        {
            return this.keyField;
        }
        set
        {
            this.keyField = value;
        }
    }
}

/// <remarks/>
[System.SerializableAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
public partial class propertiesPropertyStructure
{

    private propertiesPropertyStructureProperty propertyField;

    private string typeField;

    /// <remarks/>
    public propertiesPropertyStructureProperty property
    {
        get
        {
            return this.propertyField;
        }
        set
        {
            this.propertyField = value;
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.XmlAttributeAttribute()]
    public string type
    {
        get
        {
            return this.typeField;
        }
        set
        {
            this.typeField = value;
        }
    }
}

/// <remarks/>
[System.SerializableAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
public partial class propertiesPropertyStructureProperty
{

    private string keyField;

    private ushort valueField;

    /// <remarks/>
    [System.Xml.Serialization.XmlAttributeAttribute()]
    public string key
    {
        get
        {
            return this.keyField;
        }
        set
        {
            this.keyField = value;
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.XmlTextAttribute()]
    public ushort Value
    {
        get
        {
            return this.valueField;
        }
        set
        {
            this.valueField = value;
        }
    }
}

4)是的,很多代码o_O。使用XmlDeserializer(typeof(properties))


0
投票

如果您创建LogProperties类的示例实例并将其序列化为:

var serializer = new XmlSerializer(typeof(LogProperties));

LogProperties logProperties = new LogProperties() 
{ 
    SourceContext = "MySourceContext",
    ActionId = "MyActionId",
    ActionName = "MyActionName"
};

StringBuilder sb = new StringBuilder();
using (StringWriter writer = new StringWriter(sb))
{
    serializer.Serialize(writer, logProperties);
}

Console.WriteLine(sb.ToString());

这就是你得到的:

<?xml version="1.0" encoding="utf-16"?>
<properties xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <SourceContext>MySourceContext</SourceContext>
  <ActionId>MyActionId</ActionId>
  <ActionName>MyActionName</ActionName>
</properties>

所以你所拥有的类不适合你很好的XML。在两个方向上尝试序列化总是有用的。

下面是一种方法,您可以将您所拥有的XML序列化到您拥有的类中(明确区分对象模型和持久性格式)。它使用System.Xml.Linq命名空间中的XDocument类。

// Must escape all quotes !
string xmlSample = @"
<properties>
    <property key=""EventId"">
        <structure type = """">
            <property key=""Id"">404</property>
        </structure>
    </property>
    <property key=""ActionId""> 0592d9e8 - f4fd - 459f - 96b3 - 2b787d01a754</property>
    <property key=""ActionName""> API.Controllers.CompletionsController.GetCompletion(PS.API)</property>
    <property key=""RequestId""> 0HLJ2IL5A9: 00000001</property>
    <property key=""RequestPath"">/api/completions/0</property>
    <property key=""CorrelationId"" />
    <property key=""ConnectionId"">0HLJ2IL59</property>
    <property key=""MachineName"">RD0003FF1</property>
    <property key=""ThreadId"">117</property>
</properties>";

StringReader reader = new StringReader(xmlSample);
XDocument xdoc = XDocument.Parse(xmlSample);

LogProperties log = new LogProperties();
foreach (XElement prop in xdoc.Root.Elements())
{
    switch (prop.Attribute("key").Value)
    {
    case "ActionId" : log.ActionId = prop.Value; break;
    case "ActionName" : log.ActionName = prop.Value; break;

    // and so on

    }
}

请注意,使用此方法:

  • 你不需要你班级的XML属性
  • 你不需要塑造你的类以适应XML(或其他方式)
  • 您可以添加自己的LogProperties类的自定义初始化(不再需要默认构造函数)
  • 您可以添加自己的自定义错误处理
© www.soinside.com 2019 - 2024. All rights reserved.