Skip to main content
.NET Framework 4.6.2+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ModelBOModelMemberNodesGenerator Class

A Nodes Generator that generates the content of the IModelBOModelClassMembers node.

Namespace: DevExpress.ExpressApp.Model.NodeGenerators

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public class ModelBOModelMemberNodesGenerator :
    ModelNodesGeneratorBase

#Remarks

This class is a ModelNodesGeneratorBase descendant, that generates child nodes of BOModel | OwnMembers nodes. It gets a public members list from the business class’ metadata information. It initializes the IModelMember nodes’ properties with values specified in code via Data Annotations in Data Model applied to business class members, e.g CustomAttribute, IndexAttribute, LookupEditorModeAttribute, ImagesForBoolValuesAttribute, CaptionsForBoolValuesAttribute, ImageEditorAttribute, DataSourcePropertyAttribute, etc.

To customize the content of the OwnMembers node, implement a Generator Updater for this Nodes Generator by inheriting the ModelNodesGeneratorUpdater<T> class in the following manner:

public class Updater : ModelNodesGeneratorUpdater<ModelBOModelMemberNodesGenerator> {
    public override void UpdateNode(ModelNode node) {
        // Cast the 'node' parameter to IModelOwnMembers
        // to access the OwnMembers node.
    }
}

The Generator Updater above should be registered within the overridden ModuleBase.AddGeneratorUpdaters method.

For a complete list of available Nodes Generators, refer to the Built-in Nodes Generators topic.

#Inheritance

Object
ModelNodesGeneratorBase
ModelBOModelMemberNodesGenerator
See Also