Ticket T208712
Visible to All Users

How to add a dynamic list member to a domain component (DC) at runtime?

created 10 years ago

I need to separate related dc´s into different modules so I can sell extension modules which upgrade existing domain components.

Example: My base module contains the dc "ICustomer" which has Invoices

C#
[DomainComponent] public interface ICustomer { int CustomerNumber { get; set; } string Name { get; set; } IList<IInvoice> Invoices { get; } } [DomainComponent] public interface IInvoice { int InvoiceNumber { get; set; } ICustomer Customer { get; set; } }

What I want to do is to separate the financial functionality into a separate module that I can add on customer request.
So I need to define the base module like this:

C#
[DomainComponent] public interface ICustomer { int CustomerNumber { get; set; } string Name { get; set; } }

And the FinancialModule like this:

C#
[DomainComponent] public interface IInvoice { int InvoiceNumber { get; set; } }

Now this two modules are independent. What I need now is the aggregation of customer->invoice.
I tried to implement this similar to How do I define a custom member for a domain component (DC) at runtime?: (see my comment there)

C#
public WinSolutionWindowsFormsApplication() { InitializeComponent(); this.SettingUp += WinSolutionWindowsFormsApplication_SettingUp; } void WinSolutionWindowsFormsApplication_SettingUp(object sender, SetupEventArgs e) { string customMemberName = "Invoices"; Type customMemberType = typeof(IList<IInvoice>); TypeInfo domainComponentTypeInfo = (TypeInfo)XafTypesInfo.Instance.FindTypeInfo(typeof(ICustomer)); IMemberInfo memberInfo = domainComponentTypeInfo.FindMember(customMemberName); if (memberInfo == null) { memberInfo = domainComponentTypeInfo.CreateMember(customMemberName, customMemberType, ""); } customMemberName = "Customer"; customMemberType = typeof(ICustomer); domainComponentTypeInfo = (TypeInfo)XafTypesInfo.Instance.FindTypeInfo(typeof(IInvoice)); memberInfo = domainComponentTypeInfo.FindMember(customMemberName); if (memberInfo == null) { memberInfo = domainComponentTypeInfo.CreateMember(customMemberName, customMemberType, ""); } }

But the creation of the aggregated list does not work.

What´s the correct way to create an aggregation for dc´s at runtime?

Answers approved by DevExpress Support

created 10 years ago

Hello Peter,

Thank you for the detailed question. There is no universal way to add an association in DC at runtime. I suggest you introduce the required association in the resultant application by adding domain components. For example, you can do this in the following manner:

C#
[DomainComponent] public interface IResultCustomer : ICustomer { IList<IResultInvoice> Invoices { get; } } [DomainComponent] public interface IResultInvoice : IInvoice { IResultCustomer Customer { get; set; } } public class ResultModule : ModuleBase { public override void Setup(XafApplication application) { base.Setup(application); application.TypesInfo.RegisterEntity("Customer", typeof(IResultCustomer)); application.TypesInfo.RegisterEntity("Invoice", typeof(IResultInvoice)); } ...

I hope you find this information helpful.

Thanks,
Ilya P

    Comments (2)
    PK PK
    Peter Kieslinger 10 years ago

      Hello Ilya,
      the goal for my approach was to use the independent modules to extend the application without compiling a different application for each customer.
      Next problem with the approach you suggested is that the DC "ICustomer" is registered in an existing module which is running at my customers systems.
      If it´s not possible to add the associations at runtime, I´ll add only the Customer member to "IInvoice" to bind the customer to the invoice. To list all invoices for a customer I then use a controller to filter them.
      I hope the runtime associations are possible in future versions of DC and like to add this to the "wishlist".
      Thanks,
      Peter

      DevExpress Support Team 10 years ago

        Hello Peter,

        Thank you for describing your scenario. I understand it but now there is no universal way to add an association to DC at runtime. Thank you for the feedback.

        Thanks,
        Ilya P

        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.