Другой тип лайфтайма сервиса А если брейкпоинт поставишь в конструкторе класса Дата? Ну и стартап покажи весь
using Microsoft.Extensions.DependencyInjection.Extensions; using WebApp.Models; public class Startup { // This method gets called by the runtime. Use this method to add services to the container. // For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940 public void ConfigureServices(IServiceCollection services) { services.AddMvc(); services.AddCors(o => o.AddPolicy("CorsPolicy", builder => { builder .AllowAnyMethod() .AllowAnyHeader() .AllowCredentials(); })); services.AddControllers(); services.AddControllersWithViews(mvcOtions => { mvcOtions.EnableEndpointRouting = false; }); services.AddScoped<IData, Data>(); services.TryAddSingleton<IData, Data>(); services.AddRazorPages(); services.AddSignalR(); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env) { //если проект в разработке if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } else { app.UseExceptionHandler("/Home/Error"); // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts. app.UseHsts(); } app.UseHttpsRedirection(); app.UseStaticFiles(); app.UseCors("CorsPolicy"); app.UseRouting(); app.UseAuthorization(); app.UseEndpoints(endpoints => { endpoints.MapControllerRoute( name: "default", pattern: "{controller=Home}/{action=Index}/{id?}"); }); } }
то же что и AddTransient и тоже что и AddSingletone только разного уровня)
да блять сука нахуя кидать код)
у меня красиво отобразилось) щас на пастебин закину, ок?
Обсуждают сегодня