C# 如何为SQLite创建Identity Server数据库?

C# 如何为SQLite创建Identity Server数据库?,c#,sqlite,identityserver4,data-migration,C#,Sqlite,Identityserver4,Data Migration,我已经运行了dotnet new is4ef来创建Identity Server模板 接下来,我在Startup.cs中更改了UseSqlServer()->UseSqlite() 程序可以编译,但数据库中的表在运行时不会创建 如何为配置存储和操作存储创建合适的表?运行migrations@VidmantasBlazevicius如何运行迁移?如何获得迁移?我看到了SQL Server的迁移。我需要SQLite是使用SQLite运行的完整示例migrations@VidmantasBlazevi

我已经运行了
dotnet new is4ef
来创建Identity Server模板

接下来,我在
Startup.cs
中更改了
UseSqlServer()
->
UseSqlite()

程序可以编译,但数据库中的表在运行时不会创建


如何为配置存储和操作存储创建合适的表?

运行migrations@VidmantasBlazevicius如何运行迁移?如何获得迁移?我看到了SQL Server的迁移。我需要SQLite是使用SQLite运行的完整示例migrations@VidmantasBlazevicius如何运行迁移?如何获得迁移?我看到了SQL Server的迁移。我需要SQLite是SQLite的完整示例