Thang Chung

Results 119 comments of Thang Chung

Okay, please let me know when everything is okay. I will have a look at the source code later. Thank you 👍

https://activeadmin.info/index.html

SQL Server with docker-compose guidance at https://docs.docker.com/compose/aspnet-mssql-compose/

Authn & Authz https://gist.github.com/SteveSandersonMS/175a08dcdccb384a52ba760122cd2eda

State management discussion and libs at https://github.com/aspnet/AspNetCore/issues/5467

Support Rest actions for current HttpClient. The same at https://github.com/aspnet/AspNetCore/blob/a6bc6ce23dad5a9d02596cf2e91e3c4f965c61bc/src/Components/Components/src/HttpClientJsonExtensions.cs

Trying with SSR with Blazor so that we can be easy to do debug and other stuffs

State management (circuit) for blazor at https://gist.github.com/SteveSandersonMS/ba16f6bb6934842d78c89ab5314f4b56

Staring at `Grpc.Net.Client`, tried it but still got an error when run with .NET Standard 2.1. Example at https://github.com/heikovetter/BlazorGrpcSample. With this coming lib, we can set up gRPC service on...

```csharp /// /// Ref to https://github.com/GoogleCloudPlatform/dotnet-docs-samples/blob/8a942cae26/monitoring/api/AlertSample/Program.cs /// public class ProtoMessageConverter : JsonConverter { public override bool CanConvert(Type objectType) { return typeof(IMessage).IsAssignableFrom(objectType); } public override object ReadJson(JsonReader reader, Type objectType, object...