Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

268
Visualizações
How import WebApplicationBuilder in a Class Library?

I want to create an extension method for WebApplicationBuilder:

public static void AddData(this WebApplicationBuilder builder)
{
    var connectionString = builder.Configuration.GetConnectionString("DefaultConnection");
    builder.Services.AddDbContext<ApplicationDbContext>(option =>
    {
        option.UseSqlite(connectionString);
    });
}

this method works in a project that use: <Project Sdk="Microsoft.NET.Sdk.Web">, but if I put this method in a class libary then it doesn't work (<Project Sdk="Microsoft.NET.Sdk>) because it doesn't find Microsoft.AspNetCore.Builder

Otherwise, if I use <Project Sdk="Microsoft.NET.Sdk.Web"> the compiler say that there is no Main in the project.

How can I do?

Why can't I write this?

using Microsoft.AspNetCore.Builder;
over 4 years ago · Santiago Trujillo
1 Respostas
Responde à pergunta

0

I did this recently when I converted to a .Net 6 project. I wasn't able to extend the Builder either, so I added the extension to the IServiceCollection and passed in the configuration. So to use your example, my code looked more like:

public static void AddData(this IServiceCollection services, ApplicationSettings appSettings)
{
    services.AddDbContext<ApplicationDbContext>(option =>
    {
        option.UseSqlite(appSettings.ConnectionString);
    });
}

Where ApplicationSettings is a custom class that is bound to the app settings in the json. So my Program.cs has these lines:

var builder = WebApplication.CreateBuilder(args);
ConfigurationManager configuration = builder.Configuration;

var appSettings = new ApplicationSettings();
configuration.Bind(appSettings);
builder.Services.AddData(appSettings);

Using the IServiceCollection in the extension method only requires:

using Microsoft.Extensions.DependencyInjection;
over 4 years ago · Santiago Trujillo Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda