Skip to main content

XPMemberInfo.IsFetchOnly Property

Specifies if the member value can be saved to the database.

Namespace: DevExpress.Xpo.Metadata

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public bool IsFetchOnly { get; }

Property Value

Type Description
Boolean

true, if the member value can be loaded from the database but should not be saved (should not be included in the INSERT and UPDATE SQL statements); false - if the value can be both loaded and saved.

Remarks

To change the IsFetchOnly value, use the FetchOnlyAttribute.

See Also