We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have the following Data Contract objects in my metadata:
Data Contract
The resulting code breaks because it ignores the Id attribute on the parent data contract.
Id
public record TargetingCondition { public TargetingCondition(Guid id, int priority) { Id = id; Priority = priority; } public Guid Id { get; init; } public int Priority { get; init; } }
public record RandomRolloutTargetingCondition : TargetingCondition { [IntentManaged(Mode.Ignore)] public RandomRolloutTargetingCondition(Guid id, int priority, decimal percentage) : base(priority) { Percentage = percentage; } public decimal Percentage { get; init; } }
The above : base(priority) should be : base(id, priority).
: base(priority)
: base(id, priority)
4.4.0-beta.1
No response
The text was updated successfully, but these errors were encountered:
Thanks @stephanjohnson, we've logged this on our side to resolve as soon as possible.
Sorry, something went wrong.
joelsteventurner
No branches or pull requests
What happened?
I have the following
Data Contract
objects in my metadata:The resulting code breaks because it ignores the
Id
attribute on the parent data contract.The above
: base(priority)
should be: base(id, priority)
.What version of Intent Architect are you using?
4.4.0-beta.1
Additional information
No response
The text was updated successfully, but these errors were encountered: