Skip to main content
.NET 6.0+

ViewRecord Class

A record within the XPView.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.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