You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
XrmContext currently supports intersections entities where an interface is generated containing the intersected attributes of two entities. However, nested intersection is not currently possible.
Say you have 3 entities: A, B, and C. The three entities all have something in common but A and B have more in common than C. So in this case I would like to be able to have two interface; IAB and IABC. I should then be able to cast IABC -> IAB but not from IAB -> IABC.
The argument for intersection would then look something like the following: "intersect", "IAB:A;B, IABC:IAB;C"
The text was updated successfully, but these errors were encountered:
XrmContext currently supports intersections entities where an interface is generated containing the intersected attributes of two entities. However, nested intersection is not currently possible.
Say you have 3 entities:
A
,B
, andC
. The three entities all have something in common butA
andB
have more in common thanC
. So in this case I would like to be able to have two interface;IAB
andIABC
. I should then be able to castIABC
->IAB
but not fromIAB
->IABC
.The argument for intersection would then look something like the following:
"intersect", "IAB:A;B, IABC:IAB;C"
The text was updated successfully, but these errors were encountered: