System.Type 到 XmlSchema 内置类型

本文关键字:内置 置类型 XmlSchema Type System | 更新日期: 2023-09-27 18:31:42

我正在将一些类属性写入XmlSchema,目前我想在<xs:element type="xs:string">中编写类型。

是否有一些映射类,所以我不必编写自己的switch-case

public class Foo
{
    public string Bar { get; set; }
}
public void WriteProperty()
{
    // get the property that is a string
    PropertyInfo barProperty;
    XmlSchemaElement barElement;
    // I don't want this huge switch case for all basic properties.
    switch(barProperty.PropertyType.FullName)
    {
        case "System.String":
            barElement.SchemaTypeName = new QualifiedName("xs:string");
            break;
        // also for int, and bool, and long....

        default:
            //do other stuff with types that are not default types
            break;
    }
}

System.Type 到 XmlSchema 内置类型

.NET 框架没有映射类或函数来执行您需要的操作。

我建议创建一个映射字典,而不是使用一个大开关:

static Dictionary<string, string> TypeMap = new Dictionary<string, string>() {
  { "System.String", "xs:string" },
  { "System.Int32", "xs:int" },
  . . . 
};
. . . 
  string schemaTypeName;
  if (TypeMap.TryGetValue(barProperty.PropertyType.FullName, out schemaTypeName)) {
    barElement.SchemaTypeName = new QualifiedName("xs:string");
  } else {
    //do other stuff with types that are not default types
  }