gpt4 book ai didi

c# - 将 xml 反序列化为 Linq to SQL 对象

转载 作者:行者123 更新时间:2023-11-30 16:35:09 28 4
gpt4 key购买 nike

我需要读入从外部系统发布的XML数据,这些数据的格式大致如下:

<Applicant>
<FirstName>John</FirstName>
<LastName>Smith</LastName>
<Address>12 Main St</Address>
</Applicant>

这是我的 Linq 到 SQL Applicant 类的直接映射,不包括一些属性。

将 xml 反序列化为 Linq to SQL 对象的最佳方法是什么,以便我可以直接插入到我的数据库中?我还想验证传入的 XML 并在可能的情况下处理特定错误。

提前致谢!

最佳答案

如果它是一个直接映射,你应该可以直接使用它,只要类型是公共(public)的并且有公共(public)的无参数构造函数,并且属性(包括列表)是get/set。

如果您需要调整名称,可以使用 XmlSerializer 构造函数指定所有属性。这非常适合您的场景,但是如果您使用此构造函数重载,您必须缓存并重新使用序列化程序,否则您将泄漏内存(不会收集动态程序集)。

下面是一个完整的示例,它删除了一个属性 (XmlIgnore),将另一个属性更改为属性,并将第三个保留为元素。

using System;
using System.IO;
using System.Xml.Serialization;
public class Foo
{
public int A { get; set; }
public string B { get; set; }
public int C { get; set; }
}
static class Program
{
static readonly XmlSerializer serializer;
static Program()
{
XmlAttributeOverrides or = new XmlAttributeOverrides();
or.Add(typeof(Foo), "A", new XmlAttributes { // change to an attrib
XmlAttribute = new XmlAttributeAttribute("tweaked")
});
or.Add(typeof(Foo), "B", new XmlAttributes {
XmlIgnore = true // turn this one off
});
// leave C as a default named element
serializer = new XmlSerializer(typeof(Foo), or);
}
static void Main()
{
Foo foo = new Foo { A = 123, B = "def", C = 456 }, clone;
string xml;
using (StringWriter sw = new StringWriter())
{
serializer.Serialize(sw, foo);
xml = sw.ToString();
}
using (StringReader sr = new StringReader(xml)) {
clone = (Foo)serializer.Deserialize(sr);
}
Console.WriteLine(xml);
Console.WriteLine();
Console.WriteLine(clone.A);
Console.WriteLine(clone.B);
Console.WriteLine(clone.C);
}
}

另请注意,如果您只需要更改类型 级别的内容(例如[XmlInclude]),那么您可以通过部分类来完成此操作 LINQ-to-SQL 生成;例如:

namespace My.Dal.Namespace {
// add a type attribute to SomeEntity
[XmlInclude(typeof(SomeDerivedEntity))]
partial class SomeEntity { }
}

关于c# - 将 xml 反序列化为 Linq to SQL 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2081845/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com