标签: asp.net sql-server asp.net-mvc
我需要创建一个应用程序,用户上传xml文档,该文档存储在“xml”类型的数据库列中。有谁知道一个等同于它的班级?
答案 0 :(得分:0)
如果您使用SqlCommand对象与数据库进行交互,请参阅MSDN:
SqlCommand
对于SqlDbType Xml 枚举值,您可以使用string,XML值,XmlReader派生类型实例,或者SqlXml对象。
SqlDbType
string
XML
XmlReader
SqlXml
如果您使用的是Linq-to-SQL或Entity Framework,请参阅以下问题: