2016-09-06 17:09:19 -07:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.AspNetCore.Builder;
|
|
|
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
2016-09-12 20:28:55 -07:00
|
|
|
|
using Microsoft.eShopOnContainers.Services.Ordering.SqlData.UnitOfWork;
|
2016-09-09 17:24:24 -07:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
2016-09-14 00:44:13 -07:00
|
|
|
|
using Microsoft.eShopOnContainers.Services.Ordering.Domain.Contracts;
|
2016-09-12 20:28:55 -07:00
|
|
|
|
using Microsoft.eShopOnContainers.Services.Ordering.SqlData.Repositories;
|
|
|
|
|
using Microsoft.eShopOnContainers.Services.Ordering.SqlData.Queries;
|
2016-09-09 17:24:24 -07:00
|
|
|
|
|
2016-09-07 13:52:26 -07:00
|
|
|
|
namespace Microsoft.eShopOnContainers.Services.Ordering.API
|
2016-09-06 17:09:19 -07:00
|
|
|
|
{
|
|
|
|
|
public class Startup
|
|
|
|
|
{
|
|
|
|
|
public Startup(IHostingEnvironment env)
|
|
|
|
|
{
|
|
|
|
|
var builder = new ConfigurationBuilder()
|
|
|
|
|
.SetBasePath(env.ContentRootPath)
|
|
|
|
|
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
|
|
|
|
|
.AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true)
|
|
|
|
|
.AddEnvironmentVariables();
|
|
|
|
|
Configuration = builder.Build();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IConfigurationRoot Configuration { get; }
|
|
|
|
|
|
2016-09-09 17:24:24 -07:00
|
|
|
|
// This method gets called by the runtime.
|
|
|
|
|
// Use this method to add services to the IoC container.
|
2016-09-06 17:09:19 -07:00
|
|
|
|
public void ConfigureServices(IServiceCollection services)
|
|
|
|
|
{
|
|
|
|
|
// Add framework services.
|
|
|
|
|
services.AddMvc();
|
2016-09-09 17:24:24 -07:00
|
|
|
|
|
|
|
|
|
//Add EF Core Context (UnitOfWork)
|
2016-09-14 00:44:13 -07:00
|
|
|
|
//SQL LocalDB
|
|
|
|
|
// var connString = @"Server=(localdb)\mssqllocaldb;Database=Microsoft.eShopOnContainers.Services.OrderingDb;Trusted_Connection=True;";
|
|
|
|
|
|
|
|
|
|
//SQL SERVER on-premises
|
|
|
|
|
//(Integrated Security)
|
|
|
|
|
//var connString = @"Server=CESARDLBOOKVHD;Database=Microsoft.eShopOnContainers.Services.OrderingDb;Trusted_Connection=True;";
|
|
|
|
|
|
|
|
|
|
//(SQL Server Authentication)
|
2016-10-06 12:21:18 -07:00
|
|
|
|
//var connString = @"Server=10.0.75.1;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word;";
|
|
|
|
|
|
|
|
|
|
var connString = Configuration["ConnectionString"];
|
2016-09-14 00:44:13 -07:00
|
|
|
|
|
|
|
|
|
services.AddDbContext<OrderingDbContext>(options => options.UseSqlServer(connString)
|
|
|
|
|
.UseSqlServer(connString, b => b.MigrationsAssembly("Ordering.API"))
|
2016-09-13 00:20:46 -07:00
|
|
|
|
//(CDLTLL) MigrationsAssembly will be Ordering.SqlData, but when supported
|
|
|
|
|
//Standard Library 1.6 by "Microsoft.EntityFrameworkCore.Tools"
|
|
|
|
|
//Version "1.0.0-preview2-final" just supports .NET Core
|
|
|
|
|
);
|
2016-09-12 20:28:55 -07:00
|
|
|
|
|
|
|
|
|
services.AddTransient<IOrderRepository, OrderRepository>();
|
2016-09-14 00:44:13 -07:00
|
|
|
|
services.AddTransient<IOrderdingQueries, OrderingQueries>();
|
2016-09-06 17:09:19 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
|
|
|
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
|
|
|
|
|
{
|
|
|
|
|
loggerFactory.AddConsole(Configuration.GetSection("Logging"));
|
|
|
|
|
loggerFactory.AddDebug();
|
|
|
|
|
|
2016-09-14 00:44:13 -07:00
|
|
|
|
//if (env.IsDevelopment())
|
|
|
|
|
app.UseDeveloperExceptionPage();
|
|
|
|
|
|
2016-09-06 17:09:19 -07:00
|
|
|
|
app.UseMvc();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|