Represents an enumeration of the data types associated with data fields and parameters.
public enum class DataType
public enum DataType
type DataType =
Public Enum DataType
Represents a custom data type.
DateTime 1Represents an instant in time, expressed as a date and time of day.
Date 2Represents a date value.
Time 3Represents a time value.
Duration 4Represents a continuous time during which an object exists.
PhoneNumber 5Represents a phone number value.
Currency 6Represents a currency value.
Text 7Represents text that is displayed.
Html 8Represents an HTML file.
MultilineText 9Represents multi-line text.
EmailAddress 10Represents an email address.
Password 11Represent a password value.
Url 12Represents a URL value.
ImageUrl 13Represents a URL to an image.
CreditCard 14Represents a credit card number.
PostalCode 15Represents a postal code.
Upload 16Represents file upload data type.
ExamplesThe following example uses the DataTypeAttribute attribute to customize the display of EmailAddress data field of the customer table in the AdventureWorksLT database. The email addresses are shown as hyperlinks instead of the simple text that ASP.NET Dynamic Data would have inferred from the intrinsic data type.
The example code:
Implements a metadata partial class for the related table and the associated metadata class.
Applies the DataTypeAttribute attribute to the EmailAddress data field by specifying the EmailAddress enumerated value in the associated metadata class. This indicates to the Text.ascx field template that the email address display is customized.
using System;
using System.Web.DynamicData;
using System.ComponentModel.DataAnnotations;
[MetadataType(typeof(CustomerMetaData))]
public partial class Customer
{
}
public class CustomerMetaData
{
// Add type information.
[DataType(DataType.EmailAddress)]
public object EmailAddress;
}
Imports System.Web.DynamicData
Imports System.ComponentModel.DataAnnotations
<MetadataType(GetType(CustomerMetadata))> _
Partial Public Class Customer
End Class
Public Class CustomerMetadata
' Add type information.
<DataType(DataType.EmailAddress)> _
Public EmailAddress As Object
End Class
To compile the example code, you need the following:
Visual Studio 2008 Service Pack 1 or Visual Developer 2008 Express Edition Service Pack 1.
The AdventureWorksLT sample database. For information about how to download and install the SQL Server sample database, see Microsoft SQL Server Product Samples: Database. Make sure that you install the correct version of the sample database for the version of SQL Server that you are running (SQL Server 2005 or SQL Server 2008).
A Dynamic Data Web site. This enables you to create a data context for the database and the class that contains the data field to customize and the methods to override. In addition, it creates the environment in which to use the page described before. For more information, see Walkthrough: Creating a New Dynamic Data Web Site Using Scaffolding.
For the complete code example that the field template uses to customize the display of the EmailAddress data fields, see the DataTypeAttribute attribute.
This enumeration is used to specify the type of data to associate with a data column or a parameter. You use the DataTypeAttribute attribute class to specify the data type you want to associate with the data field or parameter. You select the data type from this enumeration.
The DataTypeAttribute attribute lets you mark fields by using a type that is more specific than the database intrinsic types. For example, a string data field that contains email addresses can be attributed with the EmailAddress enumerated value. This information can be accessed by the field templates and modify how the data field is processed.
See alsoCollaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide. In this articleWas this page helpful?
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4