DbTypeAttribute Class
Specifies the database type of the column that a property is mapped to.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.2.dll
Declaration
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