2017-01-02 10 views
0

XSD2Code ++(V4.2.0.31、ライセンス版)を使用してXSDからC#-Classesを生成しようとしました。コード生成は機能していますが、制限が省略されています。xsd2code ++の制限が生成されていません

XSD:

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> 
    <xs:element name ="Product"> 
     <xs:complexType> 
      <xs:sequence maxOccurs="3"> 
       <xs:element name="Header" minOccurs="1" maxOccurs="1"/> 
       <xs:element name="Body"/> 
       <xs:element name ="value2" maxOccurs="1"> 
        <xs:simpleType> 
         <xs:restriction base="xs:string"> 
          <xs:minLength value="20" /> 
          <xs:maxLength value="22" /> 
         </xs:restriction> 
        </xs:simpleType> 
       </xs:element> 
       <xs:element name ="value4" maxOccurs="1"> 
        <xs:simpleType> 
         <xs:restriction base="xs:int"> 
          <xs:minInclusive value="5" /> 
          <xs:maxInclusive value="6" /> 
         </xs:restriction> 
        </xs:simpleType> 
       </xs:element> 
      </xs:sequence> 
     </xs:complexType> 
    </xs:element> 
</xs:schema> 

そして、このコードが生成された、制限がありません。私は彼らをセッターで見ることを期待しました。

// ------------------------------------------------------------------------------ 
// <auto-generated> 
// Generated by Xsd2Code++. Version 4.2.0.31 
// <NameSpace>xsd2code_Probierprojekt</NameSpace><Collection>List</Collection><codeType>CSharp</codeType><EnableDataBinding>False</EnableDataBinding><GenerateCloneMethod>False</GenerateCloneMethod><GenerateDataContracts>False</GenerateDataContracts><DataMemberNameArg>OnlyIfDifferent</DataMemberNameArg><DataMemberOnXmlIgnore>False</DataMemberOnXmlIgnore><CodeBaseTag>Net40</CodeBaseTag><InitializeFields>All</InitializeFields><GenerateUnusedComplexTypes>False</GenerateUnusedComplexTypes><GenerateUnusedSimpleTypes>False</GenerateUnusedSimpleTypes><GenerateXMLAttributes>True</GenerateXMLAttributes><OrderXMLAttrib>False</OrderXMLAttrib><EnableLazyLoading>False</EnableLazyLoading><VirtualProp>False</VirtualProp><PascalCase>False</PascalCase><AutomaticProperties>False</AutomaticProperties><PropNameSpecified>None</PropNameSpecified><PrivateFieldName>StartWithUnderscore</PrivateFieldName><PrivateFieldNamePrefix></PrivateFieldNamePrefix><EnableRestriction>True</EnableRestriction><RestrictionMaxLenght>True</RestrictionMaxLenght><RestrictionRegEx>True</RestrictionRegEx><RestrictionRange>True</RestrictionRange><ValidateProperty>True</ValidateProperty><ClassNamePrefix></ClassNamePrefix><ClassLevel>Public</ClassLevel><PartialClass>True</PartialClass><ClassesInSeparateFiles>False</ClassesInSeparateFiles><ClassesInSeparateFilesDir></ClassesInSeparateFilesDir><TrackingChangesEnable>False</TrackingChangesEnable><GenTrackingClasses>False</GenTrackingClasses><HidePrivateFieldInIDE>False</HidePrivateFieldInIDE><EnableSummaryComment>False</EnableSummaryComment><EnableAppInfoSettings>False</EnableAppInfoSettings><EnableExternalSchemasCache>False</EnableExternalSchemasCache><EnableDebug>False</EnableDebug><EnableWarn>False</EnableWarn><ExcludeImportedTypes>False</ExcludeImportedTypes><ExpandNesteadAttributeGroup>False</ExpandNesteadAttributeGroup><CleanupCode>False</CleanupCode><EnableXmlSerialization>True</EnableXmlSerialization><SerializeMethodName>Serialize</SerializeMethodName><DeserializeMethodName>Deserialize</DeserializeMethodName><SaveToFileMethodName>SaveToFile</SaveToFileMethodName><LoadFromFileMethodName>LoadFromFile</LoadFromFileMethodName><EnableEncoding>False</EnableEncoding><EnableXMLIndent>False</EnableXMLIndent><Encoder>UTF8</Encoder><Serializer>XmlSerializer</Serializer><sspNullable>False</sspNullable><sspString>False</sspString><sspCollection>False</sspCollection><sspComplexType>False</sspComplexType><sspSimpleType>False</sspSimpleType><sspEnumType>False</sspEnumType><BaseClassName>EntityBase</BaseClassName><UseBaseClass>False</UseBaseClass><GenBaseClass>False</GenBaseClass><CustomUsings></CustomUsings><AttributesToExlude></AttributesToExlude> 
// </auto-generated> 
// ------------------------------------------------------------------------------ 
#pragma warning disable 

namespace xsd2code_Probierprojekt 
{ 
using System; 
using System.Diagnostics; 
using System.Xml.Serialization; 
using System.Collections; 
using System.Xml.Schema; 
using System.ComponentModel; 
using System.IO; 
using System.Text; 
using System.ComponentModel.DataAnnotations; 
using System.Xml; 
using System.Collections.Generic; 


[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.34209")] 
[System.SerializableAttribute()] 
[System.Diagnostics.DebuggerStepThroughAttribute()] 
[System.ComponentModel.DesignerCategoryAttribute("code")] 
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)] 
[System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false)] 
public partial class Product 
{  
    private List<object> _header; 
    private List<object> _body; 
    private List<string> _value2; 
    private List<double> _value4; 
    private static XmlSerializer serializer; 

    public Product() 
    { 
     this._value4 = new List<double>(); 
     this._value2 = new List<string>(); 
     this._body = new List<object>(); 
     this._header = new List<object>(); 
    } 


    [System.Xml.Serialization.XmlElementAttribute("Header", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] 
    public List<object> Header 
    { 
     get 
     { 
      return this._header; 
     } 
     set 
     { 
      this._header = value; 
     } 
    } 


    [System.Xml.Serialization.XmlElementAttribute("Body", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] 
    public List<object> Body 
    { 
     get 
     { 
      return this._body; 
     } 
     set 
     { 
      this._body = value; 
     } 
    } 


    [System.Xml.Serialization.XmlElementAttribute("value2", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] 
    public List<string> value2 
    { 
     get 
     { 
      return this._value2; 
     } 
     set 
     { 
      this._value2 = value; 
     } 
    } 


    [System.Xml.Serialization.XmlElementAttribute("value4", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] 
    public List<double> value4 
    { 
     get 
     { 
      return this._value4; 
     } 
     set 
     { 
      this._value4 = value; 
     } 
    } 

Serialisers and Deserialisers etc. 

} 
} 

#pragma warning restore 

もちろん、自分で検証することはできますが、私の会社では、XSDの制限をより速く、エラーを避けるために生成したいと考えています。これが、xsd2codeのプロフェッショナル・バージョンを推薦する理由でした。

誰かが私より多くの経験をしているかもしれませんが、事前に ありがとうございます!

答えて

0

最終的にサポートが私の質問に答えて、私の問題を解決しました。列挙可能なプロパティに対しては制限が生成されませんでした。バグだったので、次のバージョン(4.2.0.54以上)で解決する必要があります。

とにかく、ありがとうございます!

0

最新のxsd2code ++(xsd2code.com)がすべての制限(また、列挙可能なプロパティの場合も)を正しく生成していることを確認できます。ここで

Screenshot of xsd2code++

+0

私は十分な評価を得ていないので、私はupvoteすることはできません。バグは今解決されました。確認していただきありがとうございます! –

0

結果:

[System.Xml.Serialization.XmlElementAttribute("value2", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] 
    [System.ComponentModel.DataAnnotations.StringLengthAttribute(22, MinimumLength = 20)] 
    public List<string> value2 
    { 
     get 
     { 
      return this._value2; 
     } 
     set 
     { 
      System.ComponentModel.DataAnnotations.ValidationContext validatorPropContext = new System.ComponentModel.DataAnnotations.ValidationContext(this, null, null); 
      validatorPropContext.MemberName = "value2"; 
      Validator.ValidateProperty(value, validatorPropContext); 
      this._value2 = value; 
     } 
    } 


    [System.Xml.Serialization.XmlElementAttribute("value4", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] 
    [System.ComponentModel.DataAnnotations.RangeAttribute(5, 6)] 
    public List<int> value4 
    { 
     get 
     { 
      return this._value4; 
     } 
     set 
     { 
      System.ComponentModel.DataAnnotations.ValidationContext validatorPropContext = new System.ComponentModel.DataAnnotations.ValidationContext(this, null, null); 
      validatorPropContext.MemberName = "value4"; 
      Validator.ValidateProperty(value, validatorPropContext); 
      this._value4 = value; 
     } 
    } 
関連する問題