I need a solution for adding some fields at runtime and make a one to many relationship.
As an example:
I´ll define a Table named Products static with defined fields:
1.) Name
2.) Description
Name is a unique Key.
Now at runtime, the user should Input new products. But for any new product, there are different Kind of properteis. They must defined by the user itself.
User define a product named A.
Product A has properties
weight
color
User define a product B
Product B has propertiies
size
lifetime
…
So it should be possible that the user can define the properties in a separate Parameter Table with Name, Type, perhaps limitations (min/max), can associate theses to different Products and can use theses als o in a imput mask for editing with Validation.
I know, everything is possible with XAF :-) but perhaps you have some examples, how i can do that.