We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df66548 commit c394e1fCopy full SHA for c394e1f
src/Examples/GettingStarted/Startup.cs
@@ -15,11 +15,8 @@ public void ConfigureServices(IServiceCollection services)
15
services.AddDbContext<SampleDbContext>(
16
options => options.UseSqlite("Data Source=sample.db"));
17
18
- services.AddJsonApi<SampleDbContext>(options =>
19
- {
20
- options.Namespace = "api";
21
- //options.RelativeLinks = true;
22
- });
+ services.AddJsonApi<SampleDbContext>(
+ options => options.Namespace = "api");
23
}
24
25
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
0 commit comments