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

VisibleAttribute Class

Applied to non-persistent properties. Specifies that the target property value should be visible to XPO Odata v3 Service clients.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.Extensions.dll

NuGet Package: DevExpress.Xpo.Extensions

Declaration

[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, Inherited = true)]
public class VisibleAttribute :
    Attribute

Remarks

When the VisibleAttribute attribute is applied to a non-persistent (calculated) property of an XPO persistent object, the XPO OData Service executes your custom business logic associated with this property and returns the resulting value to the client.

Another way to enable this functionality is to override the XpoContext.ShowProperty method and implement the code determining which property should be visible. The XpoContext descendant is added automatically to the <ServiceName>.svc code-behind file when you create a project using the DXperience v23.2 ORM OData Service project item template.

Note

You cannot filter and sort by non-persistent property values.

Inheritance

Object
Attribute
VisibleAttribute
See Also