Skip to main content
.NET 6.0+

CompositeView.ObjectSpace Property

Provides access to the Object Space within which a View was created.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public override IObjectSpace ObjectSpace { get; }

Property Value

Type Description
IObjectSpace

An IObjectSpace object representing the current View’s Object Space.

Remarks

An Object Space (see BaseObjectSpace) represents an instrument that allows managing a cache with persistent objects that are currently used in a View. Via an Object Space, a particular objects set is retrieved from the database to a data set. This allows making changes to objects within this data set, and canceling changes. This does not influence the general database. Use this property to access the current View’s Object Space.

Note

Do not use a root View’s Object Space for the creation of another root View in it. Instead, create a new Object Space via the XafApplication.CreateObjectSpace method for the new root View.

Note

The ObjectSpace property is not supposed to be used in scenarios where a large amount of data is processed, created or deleted. Instead, use an independent Object Space which is not used by a View. Such an Object Space can be instantiated via the XafApplication.CreateObjectSpace method.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ObjectSpace property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also