7 references to FieldIdentifier
Aspire.Dashboard (1)
Components\Dialogs\InteractionsInputDialog.razor.cs (1)
173return new FieldIdentifier(inputModel, fieldName);
Microsoft.AspNetCore.Components.Forms (4)
EditContext.cs (1)
85=> new FieldIdentifier(Model, fieldName);
EditContextDataAnnotationsExtensions.cs (2)
139_messages.Add(new FieldIdentifier(_editContext.Model, fieldName: string.Empty), validationResult.ErrorMessage!); 247new FieldIdentifier(context.Container ?? _editContext.Model, context.Name);
FieldIdentifier.cs (1)
39return new FieldIdentifier(model, fieldName);
Microsoft.AspNetCore.Components.Web (2)
Forms\Mapping\EditContextFormMappingExtensions.cs (1)
67fieldIdentifier = new FieldIdentifier(owner ?? _editContext.Model, key);
Forms\ValidationSummary.cs (1)
68CurrentEditContext.GetValidationMessages(new FieldIdentifier(Model, string.Empty));