I am learning Entity Framework Code First. I have created a model class named 'Category', after running update-database i find that EF name the class 'Categories'. My Model is as Follwoing.
public class Category
{
[Key]
public int Id { get; set; }
[StringLength(maximumLength:50)]
public string Name { get; set; }
}