A newer version of this page is available.
Switch to the current version.
DbTypeAttribute Class
Specifies the database type of the column that a property is mapped to.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v18.2.dll
Declaration
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, Inherited = true)]
public sealed class DbTypeAttribute :
Attribute
<AttributeUsage(AttributeTargets.Property Or AttributeTargets.Field, Inherited:=True)>
Public NotInheritable Class DbTypeAttribute
Inherits Attribute
Remarks
The DbTypeAttribute can be used to designate a provider-specific database type for the column which the persistent property or field is mapped to:
public class MyPersistentObject : XPObject {
// ...
DateTime myReadDate;
[DbType("smalldatetime")]
public DateTime ReadDate {
get { return myReadDate; }
set {
myReadDate = value;
}
}
}
See Also
Feedback