Solution:
If you intend to create a table without a primary key in the database just add [Keyless] before class name
as follows:
[Keyless]
public class DisplayDetails
{
}
You might come across the error when you add “keyless” that is because you also need to add this using statement:
using Microsoft.EntityFrameworkCore;
Leave a comment