Skip to content

Instantly share code, notes, and snippets.

@jonhilt
Created April 15, 2024 08:29
Show Gist options
  • Save jonhilt/4e791caeb26c4d6d2132aa97fcbca41e to your computer and use it in GitHub Desktop.
Save jonhilt/4e791caeb26c4d6d2132aa97fcbca41e to your computer and use it in GitHub Desktop.
<A>
<B @bind-xyzInB = "@_xyzInA"><B>
</A>
@code {
private FipsDetail? _xyzInA { get; set; }
}
<B>
<C @bind-xyzInC = "@xyzInB"></C>
</B>
@code{
[Parameter] public FipsDetail? xyzInB{ get; set; }
}
<C></C>
@code{
[Parameter] public FipsDetail? xyzInC{ get; set; }
private async Task LoadData(FipsDetailQuery query) {
xyzInC= await FipsService.GetFipsDetail(query);
StateHasChanged();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment