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

ViewRecord Class

A record within the XPView.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v20.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public sealed class ViewRecord :
    ICustomTypeDescriptor

Remarks

XPView view = new XPView(unitOfWork, typeof(Person));
view.AddProperty("Name", "Concat([FirstName], ' ', [LastName])");
foreach(ViewRecord record in view) {
    Console.WriteLine(record["Name"]);
}

Inheritance

Object
ViewRecord
See Also