Is there a way to do what this code did in EF Core RC 2?
protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Convention
This is also an option:
using System.ComponentModel.DataAnnotations.Schema; [Table("Book")] public class Book {...}
although you need to annotate it on each entity