8 references to DefaultPath
Diagnostics.EFCore.FunctionalTests (5)
MigrationsEndPointMiddlewareTest.cs (5)
81var path = useCustomPath ? new PathString("/EndPoints/ApplyMyMigrations") : MigrationsEndPointOptions.DefaultPath; 161var response = await server.CreateClient().PostAsync("http://localhost" + MigrationsEndPointOptions.DefaultPath, formData); 193var response = await server.CreateClient().PostAsync("http://localhost" + MigrationsEndPointOptions.DefaultPath, formData); 222var response = await server.CreateClient().PostAsync("http://localhost" + MigrationsEndPointOptions.DefaultPath, formData); 262await server.CreateClient().PostAsync("http://localhost" + MigrationsEndPointOptions.DefaultPath, formData));
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore (3)
DatabaseErrorPageOptions.cs (1)
19public virtual PathString MigrationsEndPointPath { get; set; } = MigrationsEndPointOptions.DefaultPath;
MigrationsEndPointExtensions.cs (1)
16/// Processes requests to execute migrations operations. The middleware will listen for requests made to <see cref="MigrationsEndPointOptions.DefaultPath"/>.
MigrationsEndPointOptions.cs (1)
24public virtual PathString Path { get; set; } = DefaultPath;