Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

XPLiteObject Class

Implements the IXPObject.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v19.1.dll

Declaration

[NonPersistent]
[MemberDesignTimeVisibility(false)]
[OptimisticLocking(false)]
public abstract class XPLiteObject :
    XPBaseObject

Remarks

When declaring a persistent object, you can use the XPLiteObject class as an anscestor for the object if the optimistic concurrency feature is not required. Otherwise, use the XPBaseObject class.

If your persistent class derives from the XPLiteObject class, the OptimisticLockingAttribute isn’t applied. In this instance, you should manually apply this attribute to support optimistic locking. This can be useful when it is needed to map to existing databases.

Note

XPO classes can’t be used as design-time Data Sources in VS 2005 since the base XPBaseObject class implements the System.ComponentModel.ICustomTypeDescriptor interface to provide dynamic type information. You should use, for example, the XPCollection or XPView as a data source for editors and grids.

Inheritance

See Also