文字列のリストを取得し、EF-CodeFirstを使用してデータベースとの間でそれらを保存およびロードしたいと思います。これは私のDbContextクラスです:
public class KeysDbContext : DbContext
{
public DbSet<string> Keys { get; set; }
}
しかし、コードを実行しようとすると、次の例外が発生しますSystem.InvalidOperationException
::The type 'System.String' was not mapped. Check that the type has not been explicitly excluded by using the Ignore method or NotMappedAttribute data annotation. Verify that the type was defined as a class, is not primitive, nested or generic, and does not inherit from EntityObject.
どうすれば問題を解決できますか?