Ошибка при попытке использовать WEB API в службе приложений Azure - PullRequest
0 голосов
/ 17 мая 2018

Я переносу приложение из автономного IIS / MS SQL в AZURE appService с помощью Azure SQL, и я запустил базовое приложение. Я создал и перенес БД, но когда я пытаюсь выполнить миграцию одного из API-интерфейсов, который фактически подключается к БД, я получаю следующее сообщение об ошибке и пытаюсь найти решение, но мне не удается.

An unhandled exception occurred while processing the request.
InvalidOperationException: Unable to resolve service for type 'NWMPosNGTrStore.Data.ApplicationDbContext' while attempting to activate 'NWMPosNGTrStore.Controllers.OgetTillConfigObject'.
Microsoft.Extensions.Internal.ActivatorUtilities.GetService(IServiceProvider sp, Type type, Type requiredBy, bool isDefaultParameterRequired)

Я не получаю никаких предупреждений компилятора или ошибок до того, как это произойдет, и навигация по самому сайту работает нормально, я думаю, потому что он не использует БД, но как только я хочу получить доступ к БД, приложение вылетает с вышеуказанной ошибкой сообщение

Соответствующая часть API-контроллера ниже

namespace NWMPosNGTrStore.Controllers
{
    [Route("api/online/till/[controller]")]
    public class OgetTillConfigObject : Controller
    {
        private ApplicationDbContext _context;

        public OgetTillConfigObject(ApplicationDbContext context)
        {
            _context = context;
        }

startup.cs регистрация зависимости

namespace NWMPosNGTrStore
{
    public class Startup
    {
        public Startup(IConfiguration configuration)
        {
            Configuration = configuration;
        }

        public IConfiguration Configuration { get; }

        // This method gets called by the runtime. Use this method to add services to the container.
        public void ConfigureServices(IServiceCollection services)
        {
            services.AddDbContext<ApplicationDbContext>(options =>
                options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
 services.AddTransient<ApplicationDbContext>();

ApplicationDbContext

using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using NWMPosNGTrStore.Models;

namespace NWMPosNGTrStore.Data
{
    public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
    {
        public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
            : base(options)
        {
        }

        protected override void OnModelCreating(ModelBuilder builder)
        {
            base.OnModelCreating(builder);
            // Customize the ASP.NET Identity model and override the defaults if needed.
            // For example, you can rename the ASP.NET Identity table names and more.
            // Add your customizations after calling base.OnModelCreating(builder);
            builder.Entity<OrderHeader>()
                   .HasKey(c => new { c.OrderNumberId, c.TillId });
            builder.Entity<OrderRow>()
                   .HasKey(c => new { c.OrderNumberRowId, c.TillId });
            builder.Entity<Payment>()
                   .HasKey(c => new { c.PaymentId, c.TillId });
            builder.Entity<TillBasicData>()
                    .HasKey(c => new { c.ItemId, c.CompanyId, c.languageCode });
            builder.Entity<MerchHierarchy>()
                    .HasKey(c => new { c.CompanyId, c.CategoryId, c.LanguageCode });
            builder.Entity<MerchHierarchyMapping>()
                    .HasKey(c => new { c.ParentId, c.ChildId, c.LevelId, c.CompanyId });
            builder.Entity<Color>()
                    .HasKey(c => new { c.CompanyId, c.ColorId, c.LanguageCode });
            builder.Entity<Size>()
                    .HasKey(c => new { c.SizeCode, c.SizeProfile, c.CompanyId });
            builder.Entity<LevelDesc>()
                    .HasKey(c => new { c.CompanyId, c.LevelId, c.LanguageCode });
            builder.Entity<LevelMapping>()
                    .HasKey(c => new { c.CompanyId, c.ParentId, c.LevelId });
            builder.Entity<Pricelist>()
                    .HasKey(c => new { c.PricelistId });
            builder.Entity<PriceListRow>()
                  .HasKey(c => new { c.PricelistId, c.ItemId });
            builder.Entity<BackEndConfig>()
                  .HasKey(c => new { c.CompanyId });
            builder.Entity<oh>()
                  .HasKey(c => new { c.BrandId, c.OrderNumber });
            builder.Entity<orp>()
                  .HasKey(c => new { c.BrandId, c.OrderNumber, c.OrderRowNumber });
            builder.Entity<pts>()
                  .HasKey(c => new { c.BrandId, c.OrderNumber, c.ExtRefNo });
            builder.Entity<ItemRef>()
                  .HasKey(c => new { c.ItemId, c.CategoryId });
            builder.Entity<WarehouseLocations>()
                  .HasKey(c => new { c.LocationId });
            builder.Entity<Bin>()
                  .HasKey(c => new { c.BinId });
            builder.Entity<InventoryQty>()
                  .HasKey(c => new { c.BinId, c.ItemId });
            builder.Entity<StorePart>()
                 .HasKey(c => new { c.Id });
            builder.Entity<Safe>()
                  .HasKey(c => new { c.SafeId });
            builder.Entity<NumberSeparator>()
                  .HasKey(c => new { c.Id });
            builder.Entity<Address>()
                  .HasKey(c => new { c.Id });
        }

        public DbSet<Brand> Brand { get; set; }
        public DbSet<Region> Region { get; set; }
        public DbSet<Receipt> Receipt { get; set; }
        public DbSet<TAXType> TAXType { get; set; }
        public DbSet<Pricelist> Pricelist { get; set; }
        public DbSet<CampaignPricelist> CampaignPricelist { get; set; }
        public DbSet<Language> Language { get; set; }
        public DbSet<Currency> Currency { get; set; }
        public DbSet<Promotion> Promotion { get; set; }
        public DbSet<Country> Country { get; set; }
        public DbSet<Area> Area { get; set; }
        public DbSet<City> City { get; set; }
        public DbSet<Store> Store { get; set; }
        public DbSet<Till> Till { get; set; }
        public DbSet<ConfigurationNode> ConfigurationNode { get; set; }
        public DbSet<Payment> Payment { get; set; }
        public DbSet<OrderRow> OrderRow { get; set; }
        public DbSet<OrderHeader> OrderHeader { get; set; }
        public DbSet<TillBasicData> TillBasicData { get; set; }
        public DbSet<MerchHierarchy> MerchHierarchy { get; set; }
        public DbSet<MerchHierarchyMapping> MerchHierarchyMapping { get; set; }
        public DbSet<Color> Color { get; set; }
        public DbSet<Size> Size { get; set; }
        public DbSet<LevelDesc> LevelDesc { get; set; }
        public DbSet<LevelMapping> LevelMapping { get; set; }
        public DbSet<PriceListRow> PriceListRow { get; set; }
        public DbSet<BackEndConfig> BackEndConfig { get; set; }
        public DbSet<oh> oh { get; set; }
        public DbSet<orp> orp { get; set; }
        public DbSet<pts> pts { get; set; }
        public DbSet<CRMPerson> CRMPerson { get; set; }
        public DbSet<ItemRef> ItemRef { get; set; }
        public DbSet<WarehouseLocations> WarehouseLocations { get; set; }
        public DbSet<Bin> Bin { get; set; }
        public DbSet<InventoryQty> InventoryQty { get; set; }
        public DbSet<StorePart> StorePart { get; set; }
        public DbSet<Safe> Safe { get; set; }
        public DbSet<NumberSeparator> NumberSeparator { get; set; }
        public DbSet<Address> Address { get; set; }
    }
}

1 Ответ

0 голосов
/ 17 мая 2018

Добавление следующих строк кода в класс ApplicationDBContext решило проблему:

protected override void OnConfiguring(DbContextOptionsBuilder options)
    {
        IConfigurationRoot Configuration = null;
        string basePath = Directory.GetCurrentDirectory();


        var builder = new ConfigurationBuilder()
            .SetBasePath(basePath)
           .AddJsonFile("appsettings.json");
        builder.AddEnvironmentVariables();
        Configuration = builder.Build();
        options.UseSqlServer(Configuration["Data:DefaultConnection:ConnectionString"]);
    }
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...