我需要從網絡核心中的xsd生成一個類。 在dotnet標準中,我使用了命令行xsd filename.xsd /c.
但是如何在net core中創建這個類。 任何人都知道如何做到這一點?從網絡核心中的xsd文件生成一個類
當我添加一個用xsd.exe生成的類時,我得到了一些錯誤。
例如從類
Error CS0234 The type or namespace name 'SerializableAttributeAttribute' does not exist in the namespace 'System' (are you missing an assembly reference?)
Error CS0234 The type or namespace name 'DesignerCategoryAttribute' does not exist in the namespace 'System.ComponentModel' (are you missing an assembly reference?)
Error CS0234 The type or namespace name 'XmlTypeAttributeAttribute' does not exist in the namespace 'System.Xml.Serialization' (are you missing an assembly reference?)
Error CS0246 The type or namespace name 'AnonymousType' could not be found (are you missing a using directive or an assembly reference?)
屬性在AUTOGEN文件
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
儘管如此,您應該更多地指定您的問題。有沒有什麼能讓生成的類**不能與.NET Core一起工作? xsd應該生成一個普通的poco類,其屬性爲max(xml和datacontract屬性應該在.NET Core中可用) – Tseng