Blazor: Chained Binds
A chained bind is binding a custom child component's property to a property of the parent component. Maybe you've already discovered how to two-way data bind an input element. That works with the @bind syntax to do a two-way databinding between the value of the input and a property of the parent component. An example: [PropertyName] here is the name of a property present in the parent, the component that renders the input. It can also be a proper...