ef core index attribute

Code Example - ef core index attribute

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