Hi,
Thanks very much for an amazing project. I've been playing around with the samples as per documentation:
dotnet new idserver -n IdServer
In general it has worked quite well, but I could not help but notice a large number of warnings in the logs:
warn: Microsoft.EntityFrameworkCore.Model.Validation[10620]
The property 'AuditEvent.Claims' is a collection or enumeration type with a value converter but with no value comparer. Set a value comparer to ensure the collection/enumeration elements are compared correctly.
warn: Microsoft.EntityFrameworkCore.Model.Validation[10620]
The property 'AuditEvent.Scopes' is a collection or enumeration type with a value converter but with no value comparer. Set a value comparer to ensure the collection/enumeration elements are compared correctly.
warn: Microsoft.EntityFrameworkCore.Model.Validation[10620]
The property 'BCAuthorize.Scopes' is a collection or enumeration type with a value converter but with no value comparer. Set a value comparer to ensure the collection/enumeration elements are compared correctly.
warn: Microsoft.EntityFrameworkCore.Model.Validation[10620]
The property 'Client.AuthorizationDataTypes' is a collection or enumeration type with a value converter but with no value comparer. Set a value comparer to ensure the collection/enumeration elements are compared correctly.
warn: Microsoft.EntityFrameworkCore.Model.Validation[10620]
The property 'Client.ClientRegistrationTypesSupported' is a collection or enumeration type with a value converter but with no value comparer. Set a value comparer to ensure the collection/enumeration elements are compared correctly.
warn: Microsoft.EntityFrameworkCore.Model.Validation[10620]
The property 'Client.Contacts' is a collection or enumeration type with a value converter but with no value comparer. Set a value comparer to ensure the collection/enumeration elements are compared correctly.
warn: Microsoft.EntityFrameworkCore.Model.Validation[10620]
The property 'Client.DefaultAcrValues' is a collection or enumeration type with a value converter but with no value comparer. Set a value comparer to ensure the collection/enumeration elements are compared correctly.
warn: Microsoft.EntityFrameworkCore.
<SNIP>
The property 'Template.Windows' is a collection or enumeration type with a value converter but with no value comparer. Set a value comparer to ensure the collection/enumeration elements are compared correctly.
warn: Microsoft.EntityFrameworkCore.Model.Validation[10625]
The foreign key property 'TemplateStyle.TemplateId1' was created in shadow state because a conflicting property with the simple name 'TemplateId' exists in the entity type, but is either not mapped, is already used for another relationship, or is incompatible with the associated primary key type. See https://aka.ms/efcore-relationships for information on mapping relationships in EF Core.
warn: Microsoft.EntityFrameworkCore.Query[20504]
Compiling a query which loads related collections for more than one collection navigation, either via 'Include' or through projection, but no 'QuerySplittingBehavior' has been configured. By default, Entity Framework will use 'QuerySplittingBehavior.SingleQuery', which can potentially result in slow query performance. See https://go.microsoft.com/fwlink/?linkid=2134277 for more information. To identify the query that's triggering this warning call 'ConfigureWarnings(w => w.Throw(RelationalEventId.MultipleCollectionIncludeWarning))'.
User is authenticated
I noticed this issue was mentioned in the context of a migration (EF5 to EF6) but that does not appear to be the case with my code, since I am doing a fresh start:
Any thoughts on this are appreciated. Many thanks for your time.
Hi,
Thanks very much for an amazing project. I've been playing around with the samples as per documentation:
In general it has worked quite well, but I could not help but notice a large number of warnings in the logs:
I noticed this issue was mentioned in the context of a migration (EF5 to EF6) but that does not appear to be the case with my code, since I am doing a fresh start:
Any thoughts on this are appreciated. Many thanks for your time.