xsd의 정수 요소가 문자열 필드에서 변환되는 이유는 누구에게 말해 줄 수 있습니까? 모든 필드는 문자열이 실제 데이터 형식에 의해 기인Visual Studio : 정수가있는 xsd 문제에 대한 코드 생성
[System.Xml.Serialization.XmlElementAttribute(DataType = "integer")]
public string OwnerID
{
get
{
return this.ownerIDField;
}
set
{
this.ownerIDField = value;
}
}
내 첫 번째 가정에
<xs:element name="OwnerID" type="xs:integer"/>
오른쪽 아니었다 - 날짜가 bools 같은 날짜, bools로 interpretered된다 - 정수 뭐가 잘못?
미리 감사드립니다.
우리는 거의 동시에 해결책을 가졌습니다 -) –
xs : integer를 xs : int로 대체하는 것으로 충분합니다. – isHuman