Ticket T641444
Visible to All Users

Runtime add member to nonpersistent class

created 7 years ago

The short version is that I want to add members to a non-persistent class via the Module.CustomizeTypesInfo method, but because it is non-persistent, I cannot figure out how to get a reference to which I can add a member; ITypeInfo.CreateMember returns an error when trying to add a property, and XPDictionary.GetClassInfo doesn't seem to find non-persistent types.

Now for the full explanation, in case there is perhaps a better way:
I have a [Project] type, which has a large number of non-persistent properties. In the interest of keeping the field selection from becoming too cumbersome (both for list view column chooser, and for filter editing), I want to use non-persistent 'container' classes that can be referenced by the [Project] to group related properties. For example, there are a number of [Event] types that can be assigned to a Project, and are regularly desired to be displayed as columns in a list view. The possible types of Events are defined at run time, so I cannot create the properties at design time. I can create the fields directly in the [Project] type using CustomizeTypesInfo, but as this is just one of several such groups of dynamic fields, the number of [Project] properties if I use this method quickly passes 100.

Answers

created 7 years ago

I discovered I can cast the ITypeInfo returned from ITypesInfo.FindTypeInfo to an object of type TypeInfo, which provides a CreateMember method that allows an expression parameter. This appears to have solved my needs for now.

    Comments (2)
    Andrey K (DevExpress Support) 7 years ago

      Hello,

      We are happy to hear that you solved the task. Thank you for keeping us informed.

      Andrey

      DevExpress Support Team 5 years ago

        Hi Eldon,

        I'm happy to inform you that we supported adding custom fields to non-persistent classes in the CustomizeTypesInfo method in v20.1.5. To be able to do this, inherit your non-persistent class from our new NonPersistentObjectBase class. This class has a built-in key property and implements the INotifyPropertyChanged, IXafEntityObject, and IObjectSpaceLink interfaces. You don't need to implement them manually if you inherit your non-persistent class from NonPersistentObjectBase. Please check our blog post for more information on non-persistent object improvements.

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.