There is no argument given that corresponds to the required formal parameter 'options'
问题 I'm working on my first application in .Net Core. I'm getting this build error for some reason: Error CS7036 There is no argument given that corresponds to the required formal parameter 'options' of 'LakeViewContext.LakeViewContext(DbContextOptions<LakeViewContext>)' LakeView I wasn't able to find a solution through Google Search or MS documentation. My Context class: using LakeView.Models; using Microsoft.EntityFrameworkCore; namespace LakeView { public class LakeViewContext : DbContext {