glhays
How to run project
There is nothing stopping you from downloading VS Community edition and running the solution. But I would very hesitant on doing any work on the project and sending it into the this team for production purposes. That will violate the license terms.
32 replies
Is it possible to change Migrations folder path when updating database using UI tools for EF Core
You might get some good pointers from this.
https://code-maze.com/aspnetcore-multiple-databases-efcore/
28 replies
Ef core seed (data)
I sensed based on the sample code provided this is using Identity in some way and seems to be bypassing the built-in managers. I agree and disagree with GUID's, there is controversy when to use and not use over PK <int>'s most of what I understood it revolves around large datasets and the indexing of GUID's is not ideal.
SQL Server by all means can auto-populated a GUID PK with the
NEWID()
as well you can have EF use it with the HasDefaultValueSql(NEWID())
conventions.
I see many of the Online streaming services using GUID's for ID's, maybe that's why their so damn slow.... 🤦♂️123 replies
Ef core seed (data)
Use valid guids, you can generate them via https://www.guidgenerator.com/
123 replies