Frequently used annotations
Frequently used data annotations
Index
[Index(nameof(Url))]
public class Blog
{
public int BlogId { get; set; }
public string Url { get; set; }
}Index uniqueness
[Index(nameof(Url), IsUnique = true)]
public class Blog
{
public int BlogId { get; set; }
public string Url { get; set; }
}Column names
Maximum length
Precision and Scale
Key
Last updated