[SCIM] migrating to EF6
See original GitHub issueHello,
I am trying to convert my project from using EF5 to EF6.
When running the dotnet ef migrations add
command, I get the following warnings.
Build succeeded.
The property 'SCIMSchemaAttribute.CanonicalValues' 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.
The property 'SCIMSchemaAttribute.DefaultValueInt' 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.
The property 'SCIMSchemaAttribute.DefaultValueString' 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.
The property 'SCIMSchemaAttribute.ReferenceTypes' 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.
An operation was scaffolded that may result in the loss of data. Please review the migration for accuracy.
Done. To undo this action, use 'ef migrations remove'
Do you think that a ValueComparer
should be added to the configuration files as suggested in stackoverflow?
Thanks!
Issue Analytics
- State:
- Created a year ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Port from EF6 to EF Core
A detailed guide to port your EF6 apps to EF Core. ... For example, one customer who migrated from EF6 to EF Core...
Read more >Upgrading to Entity Framework 6 - EF6
1. Install the EF6 NuGet package. You need to upgrade to the new Entity Framework 6 runtime. Right-click on your project and select...
Read more >Migrating EF6 to EF Core setting unable to specify ...
Background: We are migrating an ASP.NET MVC application that used EF6 to . NET6 and EF Core. The original project was developed with...
Read more >Migrating Entity Framework 6 projects to ...
The article provides some possible problems and solutions that may arise when migrating a project with a small part of the Entity Framework...
Read more >Migrating from EF6 to EF Core
Communicate to the team on how to handle the new changes and merge back to development2 . Apply the scripts to your live...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The release will be published this friday.
Hi,
Thank you very much for the preview packages.
Now my tests pass.
I will appreciate it if you can release the new version soon.
You are awesome as always!