本文介绍了使用XmlSerializer为SQL Server 2005创建Xml文档(具有日期类型属性)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 你好! 我有一个xml架构,它有一个日期类型属性。我使用xsd.exe 为XmlSerializer创建一个类库。 XmlSerializer.Serialize(...)的结果应作为SqlCommand参数 的值传递,以便将xml文档插入表的一列其中 列的类型是相同的xml架构。 这听起来很简单,但SQL Server需要指定时区 表示日期值。如何强制XmlSerializer.Serialize(...)包含日期类型属性的 时区(XmlSerializer.Serialize(...)by 默认不包括最佳问候, Henrik Dahl Hello! I have an xml schema which has a date typed attribute. I have used xsd.exeto create a class library for XmlSerializer. The result ofXmlSerializer.Serialize(...) should be passed as the value for the parameterof an SqlCommand for inserting the xml document in a column of a table wherethe column is typed to be of the same xml schema. This all sounds simple, but SQL Server REQUIRES the timezone to be specifiedfor date values. How to force XmlSerializer.Serialize(...) to include thetimezone of the date typed attribute (XmlSerializer.Serialize(...) bydefault does not include the timezone)?Best regards, Henrik Dahl推荐答案 这篇关于使用XmlSerializer为SQL Server 2005创建Xml文档(具有日期类型属性)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-26 21:00