Successfully reported this slideshow.
Your SlideShare is downloading. ×

你不可不知的 ASP.NET Core 3 全新功能探索 (.NET Conf 2019)

Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad
Ad

Check these out next

1 of 40 Ad

你不可不知的 ASP.NET Core 3 全新功能探索 (.NET Conf 2019)

.NET Core 3.1 預計在 2019 年底推出,也將會進入 LTS 長期支援週期,這也意味著越來越穩定的 ASP.NET Core 也必然成為未來打造網頁應用的首選框架。本次的分享將著重在 ASP.NET Core 中最重要的功能與特性,幫助大家掌握關鍵技術!

.NET Core 3.1 預計在 2019 年底推出,也將會進入 LTS 長期支援週期,這也意味著越來越穩定的 ASP.NET Core 也必然成為未來打造網頁應用的首選框架。本次的分享將著重在 ASP.NET Core 中最重要的功能與特性,幫助大家掌握關鍵技術!

Advertisement
Advertisement

More Related Content

Slideshows for you (20)

Similar to 你不可不知的 ASP.NET Core 3 全新功能探索 (.NET Conf 2019) (20)

Advertisement

More from Will Huang (20)

Recently uploaded (20)

Advertisement

你不可不知的 ASP.NET Core 3 全新功能探索 (.NET Conf 2019)

  1. 1. 多奇數位創意有限公司 技術總監 黃保翕 ( Will 保哥 ) 部落格:http://blog.miniasp.com/
  2. 2. Blazor Server
  3. 3. 離線操作
  4. 4. Standard_D1_v2 Standard_D3_V2
  5. 5. Blazor with Electron
  6. 6. gRPC
  7. 7. gRPC Protocol Buffers Introduction to gRPC on .NET Core https://grpc.io/
  8. 8. Grpc.AspNetCore Grpc.Net.Client Grpc.Net.ClientFactory
  9. 9. Tutorial: Create a gRPC client and server in ASP.NET Core # gRPC Client dotnet new console -n c1 cd c1 dotnet add package Grpc.Net.Client dotnet add package Google.Protobuf dotnet add package Grpc.Tools # 複製 gRPC Server 的 Protos 目錄過來 # 加入 <Protobuf> 項目到 *.csproj 專案檔中 <Protobuf Include="Protos/name.proto" GrpcServices="Client" /> # 建置專案 ( dotnet build ) # 修改 Program.cs (gprc-sample) dotnet run # gRPC Server dotnet new grpc -n g1 cd g1 dotnet run
  10. 10. SignalR
  11. 11. System.Text.Json const new "/chatHub" const new "/chatHub"
  12. 12. • # Install 3rd-party JS libraries • # Hubs/ChatHub.cs • signalr-chat • # Startup.cs • # Pages/Index.cshtml • signalr-chat • # wwwroot/js/chat.js • signalr-chat Tutorial: Get started with ASP.NET Core SignalR
  13. 13. System.Text.Json
  14. 14. 額外套件 整合 Json.NET
  15. 15. JsonDocument using (JsonDocument document = JsonDocument.Parse(json, options)) { foreach (JsonElement element in document.RootElement.EnumerateArray()) { DateTimeOffset date = element.GetProperty("date").GetDateTimeOffset(); if (date.DayOfWeek == DayOfWeek.Monday) { int temp = element.GetProperty("temp").GetInt32(); sumOfAllTemperatures += temp; count++; } } }
  16. 16. Try the new System.Text.Json APIs | .NET Blog Try the new System.Text.Json APIs! | On .NET | Channel 9 System.Text.Json 命名空間 The future of JSON in .NET Core 3.0 #33115
  17. 17. Kestrel
  18. 18. EventCounter EventSource EventSource provider Migrate from ASP.NET Core 2.2 to 3.0 | Kestrel
  19. 19. 身分識別與授權
  20. 20. angular -au Individual react -au Individual Authentication and authorization for SPAs Use the Angular project template with ASP.NET Core Use the React project template with ASP.NET Core Scaffold Identity in ASP.NET Core projects
  21. 21. Configure certificate authentication in ASP.NET Core public void ConfigureServices(IServiceCollection services) { services.AddAuthentication( CertificateAuthenticationDefaults.AuthenticationScheme) .AddCertificate(); } public void Configure(IApplicationBuilder app, IHostingEnvironment env) { app.UseAuthentication(); }
  22. 22. Kestrel Kerberos NTLM on Windows Microsoft.AspNetCore.Authentication.Negotiate Windows Authentication public void ConfigureServices(IServiceCollection services) { services.AddAuthentication(NegotiateDefaults.AuthenticationScheme) .AddNegotiate(); } Configure Windows Authentication in ASP.NET Core
  23. 23. MVC 與 Razor Pages
  24. 24. // 必須在 UseRouting() 之前被呼叫 // 必須在所有會用到 CORS 的中介層之前被呼叫
  25. 25. Health checks public void ConfigureServices(IServiceCollection services) { services.AddHealthChecks(); } public void Configure(IApplicationBuilder app) { app.UseRouting(); app.UseEndpoints(endpoints => { endpoints.MapHealthChecks("/health"); }); }
  26. 26. @attribute @attribute [Authorize] @implements @implements IDisposable
  27. 27. EU GDPR support in ASP.NET Core Razor component (舊版格式)
  28. 28. 從 ASP.NET Core 2 升級 3.0
  29. 29. ASPNETCORE_ (WebHost) DOTNET_ (GenericHost) • 請參考 CreateDefaultBuilder() 原始碼 • Startup 類別的建構式只支援三種型別 DI 注入 (#353) • IHostEnvironment • IConfiguration • IWebHostEnvironment WebHostBuilder .NET Generic Host
  30. 30. public void Configure(IApplicationBuilder app) { app.UseStaticFiles(); app.UseCors(); app.UseAuthentication(); app.UseSignalR(hubs => { hubs.MapHub<ChatHub>("/chat"); }); app.UseMvc(routes => { routes.MapRoute("default", "{controller=Home}/{action=Index}/{id?}"); }); }
  31. 31. public void Configure(IApplicationBuilder app) { app.UseStaticFiles(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); app.UseAuthorization(); app.UseEndpoints(endpoints => { endpoints.MapHub<ChatHub>("/chat"); endpoints.MapControllerRoute("default", "{controller=Home}/{action=Index}/{id?}"); }); }
  32. 32. Newtonsoft.Json Add Newtonsoft.Json-based JSON format support Entity Framework Core --global
  33. 33. ASP.NET Documentation Introduction to ASP.NET Core What's new in ASP.NET Core 3.0 | Microsoft Docs Migrate from ASP.NET Core 2.2 to 3.0 | Microsoft Docs .NET Core Extension Pack - Visual Studio Marketplace https://github.com/doggy8088/DotNetConf2019Demo
  34. 34. The Will Will Web 網路世界的學習心得與技術分享 http://blog.miniasp.com/ Facebook Will 保哥的技術交流中心 http://www.facebook.com/will.fans Twitter https://twitter.com/Will_Huang 聯絡資訊

Editor's Notes

  • git clone https://github.com/aspnet/AspLabs.git
    cd AspLabs\src\ComponentsElectron
    dotnet build
    cd sample/SampleApp
    dotnet run
  • Getting Started with EF Core
    https://docs.microsoft.com/en-us/ef/core/get-started/?tabs=netcore-cli

×