I've generated my DbContext using Scaffold-DbContext from existing database.
It uses Fluent mapping API. Is it possible to scaffold the entities so that they are annotated with mapping attributes, e.g.:
[Table("People")]
public class Person
{
[Column("ID")]
public int Id {get; set;}
}