FieldIdentifier.Create<TField> Method  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the FieldIdentifier structure.
public:
generic <typename TField>
 static Microsoft::AspNetCore::Components::Forms::FieldIdentifier Create(System::Linq::Expressions::Expression<Func<TField> ^> ^ accessor);
	public static Microsoft.AspNetCore.Components.Forms.FieldIdentifier Create<TField>(System.Linq.Expressions.Expression<Func<TField>> accessor);
	static member Create : System.Linq.Expressions.Expression<Func<'Field>> -> Microsoft.AspNetCore.Components.Forms.FieldIdentifier
	Public Shared Function Create(Of TField) (accessor As Expression(Of Func(Of TField))) As FieldIdentifier
    Type Parameters
- TField
 
The field Type.
Parameters
- accessor
 - Expression<Func<TField>>
 
An expression that identifies an object member.