Skip to main content
.NET 6.0+
  • The page you are viewing does not exist in the .NET Framework 4.5.2+ platform documentation. This link will take you to the parent topic of the current section.

EFCoreObjectSpace.ReloadObject(Object) Method

Updates the specified object in the current Object Space’s EFCoreObjectSpace.DbContext with data from the data source.

Namespace: DevExpress.ExpressApp.EFCore

Assembly: DevExpress.ExpressApp.EFCore.v23.2.dll

NuGet Package: DevExpress.ExpressApp.EFCore

Declaration

public override object ReloadObject(
    object obj
)

Parameters

Name Type Description
obj Object

A persistent object this method reloads from the database.

Returns

Type Description
Object

An object to be reloaded from the database.

Remarks

If the specified persistent object is a new object, the ReloadObject method does nothing. To ensure that the persistent object is not new, use the EFCoreObjectSpace.IsNewObject method.

If the specified object does not belong to the current Object Space, this method returns the object as is.

To reload a collection, use the ReloadCollection(Object) method instead of ReloadObject.

See Also