8 references to Model
Microsoft.AspNetCore.Components.Web (8)
Forms\EditForm.cs (8)
35/// also supply <see cref="Model"/>, since the model value will be taken 101if (_hasSetEditContextExplicitly && Model != null) 103throw new InvalidOperationException($"{nameof(EditForm)} requires a {nameof(Model)} " + 106else if (!_hasSetEditContextExplicitly && Model == null) 108throw new InvalidOperationException($"{nameof(EditForm)} requires either a {nameof(Model)} " + 124if (Model != null && Model != _editContext?.Model) 126_editContext = new EditContext(Model!);