1
A
回答
1
的DataType
屬性是用於標識該屬性的「真實」數據類型。 例如,類型爲string
的房產可能是DataType.PhoneNumber
或對帖子的評論(DataType.MultilineText
)。
+0
所以'DataType.PhoneNumber'是字符串是不是嗎?我不知道是什麼用法。如果我們將DataType設置爲'DataType.PhoneNumber'c#不驗證任何東西 – Arian
+1
它提供了屬性的其他信息。雖然額外的信息不能被C#編譯器驗證,但在其他情況下它很有用。例如,ASP.NET MVC Helper函數可以使用它在表單中生成合適的''元素,並且可以根據'DataType'應用JS驗證。 – FelisCatus
相關問題
- 1. DatabaseGeneratedAttribute Data Annotation在哪裏?
- 2. Spring AOP:@annotation(annotation)
- 3. 在Web Annotation Data Model中使用RDF語句作爲主體?
- 4. 哪些用於SQL-Query-Data的.NET DataType作爲webservice返回?
- 5. Auto Scaling Image Annotation
- 6. Iphone datatype
- 7. [DataType(DataType.Date)]
- 8. Backbone.sync覆蓋dataType
- 9. Spring AOP by annotation pointcut annotation not retrieve
- 10. SubSonic 3.0.0.3 | SimpleRepository | DB DataType - 類DataType映射
- 11. 是否有可能在asp.net mvc中使用「複雜」模型和Data Annotation Model Binder?
- 12. Hibernate @ Entity Annotation
- 13. Guice @Nullable annotation
- 14. Autowire without annotation @Autowired
- 15. Symfony2 GenerateUrl with annotation
- 16. MKMapView setRegion to Annotation
- 17. Spring 2 Hibernate Annotation
- 18. MapView not Showing annotation
- 19. ormlite with JPA annotation
- 20. Spring AOP @annotation
- 21. @Proxy in Hibernate Annotation
- 22. Skobbler&Annotation動畫
- 23. XElement DataType到Newtonsoft.json
- 24. SQL DataType Negative Decimal
- 25. Silverlight 4 DataTemplate DataType
- 26. jQuery ajax dataType:「json」
- 27. Ajax查詢適用於dataType:'text'失敗,dataType:'text/xml; charset = utf-8'
- 28. DataType類別不明白?
- 29. 如何使用Model Data Annotation在EditorFor Template中顯示日期格式
- 30. ASP NET 4如何使用帶有MinLength屬性的DataType密碼的Data Annotations?
您是否閱讀過[msdn定義和備註](http://msdn.microsoft.com/zh-cn/library/system.componentmodel.dataannotations.datatypeattribute.aspx)? – Eranga