public void ConfigureServices(IServiceCollection services) | |
{ | |
services.AddMvc().AddJsonOptions( | |
options => options.SerializerSettings.PreserveReferencesHandling = PreserveReferencesHandling.All); | |
services.AddDbContext<NorthwindSlimContext>( | |
options => options.UseSqlite("Data Source=northwindslim.db")); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment