Atribut Indeks Inti EF

[Index(nameof(Isbn))]public class Book{    public int BookId { get; set; }    public string Title { get; set; }    public string Isbn { get; set; }}
Annoyed Ant