Joma

Results 5 comments of Joma

My short solution for now is to add manually the following line in migration for each entity. ``` migrationBuilder.Sql("ALTER TABLE `Identity.User` AUTO_INCREMENT = 10000;"); ``` But this is not automatic...

Nice. Elegant solution. Thanks a lot @lauxjpn .

"a" isn't valid base64 string to decode.

Windows linefeed is `\r\n` Old MacOS linefeed is `\r`. New MacOS versions is `\n` Linux linefeed is `\n`. To avoid errors on decode, try removing all spacing chars `\r`, `...