I need to be able to run a function after a selection in made in a . The issue is I\'m also binding with @bind and I get a error when I try to use @o
@code { private string myVar; public string MyProperty { get { return myVar; } set { myVar = value; SomeMethod(); } } private void SomeMethod() { //Do something } }