I'm trying to do this
<MatCheckbox @bind-Value="@(!Checked)" Label="Checkbox"></MatCheckbox>
But it gives me the error
CS0131 The left-hand side of an assignment must be a variable, property or indexer
How can I pass a negated boolean value without creating another property?
I want to bind the value so it's !Checked
How can I pass a negated boolean value without creating another property?
– Flaring