Skip to content

Commit 9f5277f

Browse files
committed
Initial commit.
1 parent db5df1c commit 9f5277f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+39881
-1
lines changed

.config/dotnet-tools.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": 1,
3+
"isRoot": true,
4+
"tools": {
5+
"dotnet-ef": {
6+
"version": "3.1.5",
7+
"commands": [
8+
"dotnet-ef"
9+
]
10+
}
11+
}
12+
}

Controllers/CustomersController.cs

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using Microsoft.AspNetCore.Mvc;
6+
using Microsoft.AspNetCore.Mvc.Rendering;
7+
using Microsoft.EntityFrameworkCore;
8+
using NETCore_AzureSQL.Data;
9+
using NETCore_AzureSQL.Models;
10+
11+
namespace NETCore_AzureSQL.Controllers
12+
{
13+
public class CustomersController : Controller
14+
{
15+
private readonly MyDbContext _context;
16+
17+
public CustomersController(MyDbContext context)
18+
{
19+
_context = context;
20+
}
21+
22+
// GET: Customers
23+
public async Task<IActionResult> Index()
24+
{
25+
return View(await _context.Customer.ToListAsync());
26+
}
27+
28+
// GET: Customers/Details/5
29+
public async Task<IActionResult> Details(int? id)
30+
{
31+
if (id == null)
32+
{
33+
return NotFound();
34+
}
35+
36+
var customer = await _context.Customer
37+
.FirstOrDefaultAsync(m => m.CustomerID == id);
38+
if (customer == null)
39+
{
40+
return NotFound();
41+
}
42+
43+
return View(customer);
44+
}
45+
46+
private bool CustomerExists(int id)
47+
{
48+
return _context.Customer.Any(e => e.CustomerID == id);
49+
}
50+
51+
52+
// GET: Customers/Create
53+
public IActionResult Create()
54+
{
55+
throw new NotImplementedException();
56+
}
57+
58+
// POST: Customers/Create
59+
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
60+
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
61+
[HttpPost]
62+
[ValidateAntiForgeryToken]
63+
public async Task<IActionResult> Create([Bind("CustomerID,FirstName,LastName")] Customer customer)
64+
{
65+
throw new NotImplementedException();
66+
}
67+
68+
// GET: Customers/Edit/5
69+
public async Task<IActionResult> Edit(int? id)
70+
{
71+
throw new NotImplementedException();
72+
}
73+
74+
// POST: Customers/Edit/5
75+
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
76+
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
77+
[HttpPost]
78+
[ValidateAntiForgeryToken]
79+
public async Task<IActionResult> Edit(int id, [Bind("CustomerID,FirstName,LastName")] Customer customer)
80+
{
81+
throw new NotImplementedException();
82+
}
83+
84+
// GET: Customers/Delete/5
85+
public async Task<IActionResult> Delete(int? id)
86+
{
87+
throw new NotImplementedException();
88+
}
89+
}
90+
}

Controllers/HomeController.cs

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Diagnostics;
4+
using System.Linq;
5+
using System.Threading.Tasks;
6+
using Microsoft.AspNetCore.Mvc;
7+
using Microsoft.Extensions.Logging;
8+
using NETCore_AzureSQL.Models;
9+
10+
namespace NETCore_AzureSQL.Controllers
11+
{
12+
public class HomeController : Controller
13+
{
14+
private readonly ILogger<HomeController> _logger;
15+
16+
public HomeController(ILogger<HomeController> logger)
17+
{
18+
_logger = logger;
19+
}
20+
21+
public IActionResult Index()
22+
{
23+
return View();
24+
}
25+
26+
public IActionResult Privacy()
27+
{
28+
return View();
29+
}
30+
31+
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
32+
public IActionResult Error()
33+
{
34+
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
35+
}
36+
}
37+
}

Data/MyDbContext.cs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using Microsoft.EntityFrameworkCore;
6+
7+
namespace NETCore_AzureSQL.Data
8+
{
9+
public class MyDbContext : DbContext
10+
{
11+
public MyDbContext(DbContextOptions<MyDbContext> options)
12+
: base(options)
13+
{
14+
// Add and configure AzureServiceTokenProvider to securely access the SQL Database
15+
var conn = (Microsoft.Data.SqlClient.SqlConnection)Database.GetDbConnection();
16+
conn.AccessToken = (new Microsoft.Azure.Services.AppAuthentication.AzureServiceTokenProvider())
17+
.GetAccessTokenAsync("https://database.windows.net/").Result;
18+
}
19+
20+
public DbSet<Models.Customer> Customer { get; set; }
21+
}
22+
}

Models/Customer.cs

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.ComponentModel.DataAnnotations;
4+
using System.ComponentModel.DataAnnotations.Schema;
5+
using System.Linq;
6+
using System.Threading.Tasks;
7+
8+
namespace NETCore_AzureSQL.Models
9+
{
10+
[Table("Customer", Schema = "SalesLT")]
11+
public class Customer
12+
{
13+
public int CustomerID { get; set; }
14+
15+
[Display(Name = "First Name")]
16+
[DataType(DataType.Text)]
17+
[MaxLength(50)]
18+
[Required]
19+
public string FirstName { get; set; }
20+
21+
[Display(Name = "Last Name")]
22+
[DataType(DataType.Text)]
23+
[MaxLength(50)]
24+
[Required]
25+
public string LastName { get; set; }
26+
27+
// TODO: add other properties to map the corresponding database fields
28+
}
29+
}

Models/ErrorViewModel.cs

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
using System;
2+
3+
namespace NETCore_AzureSQL.Models
4+
{
5+
public class ErrorViewModel
6+
{
7+
public string RequestId { get; set; }
8+
9+
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
10+
}
11+
}

NETCore-AzureSQL.csproj

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
<RootNamespace>NETCore_AzureSQL</RootNamespace>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<PackageReference Include="Microsoft.Azure.Services.AppAuthentication" Version="1.5.0" />
10+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.5" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.5" />
12+
</ItemGroup>
13+
14+
</Project>

NETCore-AzureSQL.sln

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.29709.97
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NETCore-AzureSQL", "NETCore-AzureSQL.csproj", "{14FD9303-A9D5-4BAA-AB7A-784A54038DB5}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{14FD9303-A9D5-4BAA-AB7A-784A54038DB5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{14FD9303-A9D5-4BAA-AB7A-784A54038DB5}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{14FD9303-A9D5-4BAA-AB7A-784A54038DB5}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{14FD9303-A9D5-4BAA-AB7A-784A54038DB5}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {BCC39243-250B-4FB7-9A19-A4932585F9A8}
24+
EndGlobalSection
25+
EndGlobal

Program.cs

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using Microsoft.AspNetCore.Hosting;
6+
using Microsoft.Extensions.Configuration;
7+
using Microsoft.Extensions.Hosting;
8+
using Microsoft.Extensions.Logging;
9+
10+
namespace NETCore_AzureSQL
11+
{
12+
public class Program
13+
{
14+
public static void Main(string[] args)
15+
{
16+
CreateHostBuilder(args).Build().Run();
17+
}
18+
19+
public static IHostBuilder CreateHostBuilder(string[] args) =>
20+
Host.CreateDefaultBuilder(args)
21+
.ConfigureWebHostDefaults(webBuilder =>
22+
{
23+
webBuilder.UseStartup<Startup>();
24+
});
25+
}
26+
}

Properties/launchSettings.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"iisSettings": {
3+
"windowsAuthentication": false,
4+
"anonymousAuthentication": true,
5+
"iisExpress": {
6+
"applicationUrl": "http://localhost:61225",
7+
"sslPort": 44381
8+
}
9+
},
10+
"profiles": {
11+
"IIS Express": {
12+
"commandName": "IISExpress",
13+
"launchBrowser": true,
14+
"environmentVariables": {
15+
"ASPNETCORE_ENVIRONMENT": "Development"
16+
}
17+
},
18+
"NETCore_AzureSQL": {
19+
"commandName": "Project",
20+
"launchBrowser": true,
21+
"applicationUrl": "https://localhost:5001;http://localhost:5000",
22+
"environmentVariables": {
23+
"ASPNETCORE_ENVIRONMENT": "Development"
24+
}
25+
}
26+
}
27+
}

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
# NETCore-AzureSQL
2-
A sample .NET Core App to show how to securely connect to an Azure SQL Database using a managed identity
2+
A sample .NET Core App to show how to securely connect to an Azure SQL Database using managed identity.
3+
4+
Made for Azure Day 2020 Rome (Italy): http://azureday.it/
5+
6+

Startup.cs

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using Microsoft.AspNetCore.Builder;
6+
using Microsoft.AspNetCore.Hosting;
7+
using Microsoft.AspNetCore.HttpsPolicy;
8+
using Microsoft.Extensions.Configuration;
9+
using Microsoft.Extensions.DependencyInjection;
10+
using Microsoft.Extensions.Hosting;
11+
using Microsoft.EntityFrameworkCore;
12+
13+
namespace NETCore_AzureSQL
14+
{
15+
public class Startup
16+
{
17+
public Startup(IConfiguration configuration)
18+
{
19+
Configuration = configuration;
20+
}
21+
22+
public IConfiguration Configuration { get; }
23+
24+
// This method gets called by the runtime. Use this method to add services to the container.
25+
public void ConfigureServices(IServiceCollection services)
26+
{
27+
services.AddControllersWithViews();
28+
29+
// Add the DbContext
30+
services.AddDbContext<Data.MyDbContext>(options =>
31+
options.UseSqlServer(Configuration.GetConnectionString("MyDbConnection")));
32+
}
33+
34+
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
35+
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
36+
{
37+
if (env.IsDevelopment())
38+
{
39+
app.UseDeveloperExceptionPage();
40+
}
41+
else
42+
{
43+
app.UseExceptionHandler("/Home/Error");
44+
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
45+
app.UseHsts();
46+
}
47+
app.UseHttpsRedirection();
48+
app.UseStaticFiles();
49+
50+
app.UseRouting();
51+
52+
app.UseAuthorization();
53+
54+
app.UseEndpoints(endpoints =>
55+
{
56+
endpoints.MapControllerRoute(
57+
name: "default",
58+
pattern: "{controller=Home}/{action=Index}/{id?}");
59+
});
60+
}
61+
}
62+
}

0 commit comments

Comments
 (0)