TGINSIGHT CHAT
Tigernet Framework
@tigernetframework
TechnologiesMinimalistic, open-source server-side framework for .NET 1st release date: 1.06.2023
Seneste opslag
Tag: #updates · 4 opslag
Publiceret 4. apr.
#news#updates Put and Patch http verbsimplemented you can use them in Resters: [Putter("/route")] // method [Patcher("/route")] // method @tigernetframework
Publiceret 1. apr.
#news#updates 1. Optimized Mapping resters. You can register your resters at the same time as following: Before: builder.MapRester<UsersRester>(); builder.MapRester<ProductsRester>(); Now: builder.MapResters(); @tigernetframework
Publiceret 9. feb.
#news#updates 1. Middleware component was implemented, but it can handle only request, right now. You can call it as UseAsync(context) Before: none Now: builder.UseAsync(async (context) => { Console.WriteLine("Hello"); await Task.CompletedTask; });
Publiceret 9. feb.
#news#updates 1. Register resters, we can add the resters without hardcoded routes. It can take its name from rester name: Before: builder.MapRester<UserRester>("/users"); Now: builder.MapRester<UserRester>(); 2. You can give routes using constructor for Getter attribute: Before: [Getter(Route = "/all")] Now: [Getter("/all")]