Blazor is setting component parameter every time I interact with component
What I want to achieve is to call a function every time Parameter value of a component is updated, So I created a component with a Parameter and call a method inside its setter like this. private LookupConfig _lookupConfig; Parameter] public LookupConfig Config { get { return _lookupConfig; } set { _lookupConfig = value; Console.WriteLine("Parameter… Read More Blazor is setting component parameter every time I interact with component