Open
Description
Is there an existing issue for this?
- I have searched the existing issues
Describe the bug
Reassigning the Model
of an EditForm
causes it to create a new EditContext
, which in turn causes it to destroy and re-create all child components of the form.
Expected Behavior
Regardless of whether it creates a new EditContext
or updates it in place, child components should not be destroyed and recreated, they should only have their parameters set and re-rendered.
Steps To Reproduce
Create a page with:
<InitReporter Name="top" />
<EditForm Model="@_Model">
<InitReporter Name="form" />
</EditForm>
Also make a property for _Model
(of any desired type) and a button that performs something similar to _Model = new ModelType();
.
Create InitReporter
:
public class InitReporter : ComponentBase, IDisposable
{
[Parameter, EditorRequired] public string? Name { get; set; }
protected override void OnInitialized()
{
Console.WriteLine($"{Name} init");
base.OnInitialized();
}
public void Dispose()
{
Console.WriteLine($"{Name} dispose");
}
protected override void OnParametersSet()
{
Console.WriteLine($"{Name} set parameters");
base.OnParametersSet();
}
}
- Load the page.
- Observe that top+form init/set are logged as expected.
- Click the button to assign a different model instance.
- Observe that the
form
logger reports that it was destroyed and re-created, and thetop
logger does not. - Further note that this component isn't even dependent on the model anyway, and yet this still happens -- although even input controls and other things that do depend on the
EditContext
really shouldn't be re-created either.
Exceptions (if any)
No response
.NET Version
6.0.201
Anything else?
.NET SDK (reflecting any global.json):
Version: 6.0.201
Commit: ef40e6aa06
Runtime Environment:
OS Name: Windows
OS Version: 10.0.19041
OS Platform: Windows
RID: win10-x64
Base Path: C:\Program Files\dotnet\sdk\6.0.201\
Host (useful for support):
Version: 6.0.3
Commit: c24d9a9c91
.NET SDKs installed:
2.1.511 [C:\Program Files\dotnet\sdk]
6.0.200 [C:\Program Files\dotnet\sdk]
6.0.201 [C:\Program Files\dotnet\sdk]
.NET runtimes installed:
Microsoft.AspNetCore.All 2.1.15 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.All]
Microsoft.AspNetCore.App 2.1.15 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 6.0.2 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 6.0.3 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.NETCore.App 2.1.15 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 6.0.2 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 6.0.3 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.WindowsDesktop.App 6.0.2 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Microsoft.WindowsDesktop.App 6.0.3 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
To install additional .NET runtimes or SDKs:
https://aka.ms/dotnet-download