User-1602535186 posted
I am getting error as below
System.InvalidOperationException: 'The specified field '_redirectUris' of type 'string' cannot be used for the property 'ClientApplication.RedirectUris' of type 'IEnumerable<string>'. Only backing fields of types that are assignable from the property
type can be used.'
public IEnumerable<string> RedirectUris
{
get => EnumerationToStringConverter.CreateEnumerationFromString(_redirectUris);
set => _redirectUris = EnumerationToStringConverter.CreateStringFromEnumeration(value, _redirectUris);
}
modelBuilder.Entity<TestApplication>().Property(t=>t.RedirectUrisList).HasField("_redirectUris");