Hi @sum eric , welcome to Microsoft Q&A forum.
Entity Framework pluralize the table names in Code first approach. However you can override this behavior by many ways. One of the way is to add the below code in the myDatabaseContext.cs class in your project as below:
public System.Data.Entity.DbSet<DotNetAppSqlDb.Models.Todo> Todoes { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Entity<Todo>().ToTable("Todo");
}
Referenced Article:
Entity Framework added s to my .dbo
Please let me know if this helps or else we can discuss further.
----------
If answer helps, you can mark it 'Accept Answer'