Web
Dynamics
Нажми на тег
Entity Framework
jQuery
Angular
TeamCity
Bootstrap
Redis
GraphQL
JavaScript
Windows Forms
.NET Framework
.NET Core
TFS
MongoDB
Agile
WPF
SQL Server
Windows Server
Design Patterns
PowerShell
LINQ
Reverse Engineering
VB.NET
Kanban
TypeScript
Scrum
DRY
Jira
MySQL
CI/CD
HTML5
ADONET
SignalR
Dapper
IIS
PostgreSQL
Automation Software
Elasticsearch
Performance Optimization
REST
MariaDB
Избранное
История
Теги
Поддержка
Translate
Статистика
Реклама
Книги
Статьи
Видео
Новости
О разработчике
CMS
Репозитории
Портфолио
Заявка
Сообщения
RU
EN
Поиск по сайту
В поисках работы
точное совпадение
статьи
книги
видео
новости
заметки
название
текст
описание
автор
год
теги
Результаты поиска
Найдено:
431
graphql
(31) •
api
(426)
«
1
2
3
4
5
6
7
8
9
10
...
»
»|
27 августа 2024 г. •
статьи
Minimal APIs in .NET 8: A simplified approach to build services
https://sd.blackball.lv/articles/read/19794-minimal-api-in-net-8-simplified-approach-to-build-services
Introduction Minimal APIs in .NET 8 make a grand entrance, redefining the way we build web services. If you’re curious about what makes Minimal APIs tick and how they can streamline your development process, let’s dive in with some engaging examples. The birth of minimalism in .NET Think of a time when we...
#net8
#api
#webservices
#minimal api
27 августа 2024 г. •
статьи
➤
.NET
How to implement multitenancy in ASP.NET Core with EF Core
https://sd.blackball.lv/articles/read/19792-how-to-implement-multitenancy-in-aspnet-core-with-ef-core
Multitenancy is a software architecture that allows a single instance of a software application to serve multiple customers, called tenants. Each tenant's data is isolated and remains invisible to other tenants for security reasons. This architecture is commonly used in Software as a Service (SaaS) applications, where multiple organizations or...
#aspnetcore
#entityframeworkcore
#multitenancy
#software architecture
26 августа 2024 г. •
статьи
➤
.NET
Scheduling tasks with Cronos in .NET
https://sd.blackball.lv/articles/read/19670-scheduling-tasks-with-cronos-in-dotnet
Mastering Scheduled Tasks in .NET with Cronos Cronos is a task scheduling library for .NET that allows scheduling and executing tasks at specific times or intervals using the CRON pattern. In this article, I will present how to set up and use task scheduling in the background in a .NET 8 application. Prerequisites ...
#net8
#taskscheduling
#cronos
➤ Реклама
19 августа 2024 г. •
статьи
Building real-time notifications in .NET Core 8 Minimal APIs using SignalR
https://sd.blackball.lv/articles/read/19787-building-real-time-notifications-in-net-core-8-minimal-apis-using-signalr
Introduction Building real-time applications has become essential in modern web development, especially for features like notifications, chat systems, and live updates. SignalR, a powerful library for ASP.NET, enables seamless real-time communication between server-side code and client-side web applications. In this guide, we’ll walk through creating real-time notifications in .NET Core 8...
#net8
#minimal api
#real time app
#real time notification
#signalr
19 августа 2024 г. •
статьи
7 reasons why developers leave their jobs
https://sd.blackball.lv/articles/read/19786-7-reasons-why-developers-leave-their-jobs
Introduction In the ever-changing field of tech, it has become increasingly difficult for companies to hold on to their skilled developers. The high demand for proficient software engineers and programmers highlights the need to understand the reasons behind developer turnover. This article explores the common factors that lead developers to leave...
#job
#career
#leave job
#thought
19 августа 2024 г. •
статьи
How to implement pagination in ASP.NET Core Web API? - Ultimate guide
https://sd.blackball.lv/articles/read/19662-how-to-implement-pagination-in-aspnet-core-web-api-ultimate-guide
In this guide, we will learn how to implement Advanced Pagination in ASP.NET Core WebApi with ease. Pagination is one of the most important concepts while building RESTful APIs. You would have seen several public APIs implementing this feature for better user experience and security. We will go in detail...
#netcore3
#aspnetcore
#webapi
#pagination
#guide
16 августа 2024 г. •
статьи
The cost of ghosting: Why tech recruiters can't afford to ignore candidates
https://sd.blackball.lv/articles/read/19785-the-cost-of-ghosting-why-tech-recruiters-cannot-afford-to-ignore-candidates
Everyone hates being ghosted, but in the tech world, when we're talking recruiters and candidates, some of whom maybe some of the best in the world at what they do, it's next-level frustrating. For them, they spend days crafting the perfect application, researching your company, planning their approach, getting excited about...
#job
#career
#recruiting
#ghosting
#guide
15 августа 2024 г. •
статьи
➤
PHP
How to build a simple REST API in PHP?
https://sd.blackball.lv/articles/read/19782-how-to-build-a-simple-rest-api-in-php
In this comprehensive tutorial, you’ll discover the step-by-step process to build a simple REST API using PHP and MySQL. In the modern-day web landscape, REST APIs are extensively utilized for accessing and manipulating data. By incorporating REST APIs into the web application, it will be easy for you to integrate with...
#php
#webapi
#restful
#tutorial
15 августа 2024 г. •
статьи
➤
JavaScript
Fetch API in JavaScript with examples
https://sd.blackball.lv/articles/read/19649-fetch-api-in-javascript-with-examples
The JavaScript fetch() method is used to fetch resources from a server. It returns a Promise that resolves to the Response object representing the response to the request. The fetch method can also make HTTP requests - GET request (to get data) and POST request (to post data). Fetch also integrates...
#frontend
#javascript
#fetch
#guide
12 августа 2024 г. •
статьи
Dockerizing ASP.NET Core applications: A comprehensive guide
https://sd.blackball.lv/articles/read/19400-dockerizing-aspnet-core-applications-a-comprehensive-guide
Containerizing and deploying ASP.NET Core applications Containerization has transformed the way applications are developed, deployed, and managed in the modern software industry. Docker, in particular, has become a pivotal tool, simplifying the packaging and deployment of applications, including ASP.NET Core applications. In this guide, we’ll dive into the world of containerization...
#aspnetcore
#docker
#dockercompose
#containerization
#guide
8 августа 2024 г. •
статьи
ASP.NET Core integration testing best practices
https://sd.blackball.lv/articles/read/19777-aspnet-core-integration-testing-best-practices
Integration testing is a type of software testing essential for validating the interactions between different components of an application, ensuring they work together as expected. The main goal of integration testing is to identify any issues that may arise when these components interact with each other. What are these components? For example:...
#aspnetcore
#testing
#integration testing
#bestpractices
5 августа 2024 г. •
статьи
The 5 C# PDF libraries every developer mostly use
https://sd.blackball.lv/articles/read/19660-the-5-csharp-pdf-libraries-every-developer-mostly-use
C# is a powerful programming language, widely used for software development across various domains. One crucial aspect of application development is dealing with PDFs, whether it's generating PDFs, extracting information from existing PDF documents, or manipulating PDF files. In this article, we'll explore five C# PDF generating libraries that every developer...
#csharp
#pdf
#libraries
#comparison
2 августа 2024 г. •
статьи
Thinking like an Architect
https://sd.blackball.lv/articles/read/19763-thinking-like-an-architect
Key takeaways Architects aren't the smartest people on the team, they are the ones making everyone else smarter. An architect is an IQ amplifier. Riding the architect elevator means connecting the penthouse with the engine room. The value of a modern architect is measured...
#architecture
#software architect
2 августа 2024 г. •
статьи
The Software Architect: Demystifying 18 Software Architecture patterns
https://sd.blackball.lv/articles/read/19740-the-software-architect-demystifying-18-software-architecture-patterns
In-depth overview of 18 essential Software Architecture design patterns. Table of contents What is Software Architecture? Why do we need software architecture? Software Architecture vs Software Design How to document architecture? 4C model 18 Software Architecture...
#software architecture
#designpatterns
#overview
1 августа 2024 г. •
статьи
➤
Clean Architecture
How to structure .NET project with Clean Architecture?
https://sd.blackball.lv/articles/read/19659-how-to-structure-net-project-with-clean-architecture
Clean Architecture in practice. Clean Architecture is a popular approach to building software applications. A Clean Architecture defines clear boundaries between different application layers, resulting in improved maintainability. In addition, Clean Architecture approach aims to keep the business logic independent of any specific external frameworks or libraries, making it easier to migrate to...
#dotnet
#software architecture
#clean architecture
30 июля 2024 г. •
книги
Web API Development for the Absolute Beginner
https://sd.blackball.lv/books/19732-web-api-development-for-the-absolute-beginner-2023
If you are a developer who wants to learn the basic skills of web and application programming interfaces (APIs) with .NET, this book is your complete introduction. The book takes a learn-by-experience approach. You will hit the ground running with a sample project that has everything you need to be...
Год: 2023 • Автор: Irina Dominte • Страниц: 423 • Формат: PDF • Размер: 11,61 MB
#net7
#webapi
26 июля 2024 г. •
статьи
Compatibility of ASP.NET Web Forms and ASP.NET MVC
https://sd.blackball.lv/articles/read/19689-compatibility-of-aspnet-webforms-and-aspnet-mvc
As the pool of technology supporting Web Forms continues to shrink, you want to know if it’s a good idea to modernize your application by integrating ASP.NET Web Forms and ASP.NET MVC. Judging from our vast experience with clients making the same move, it is worth it. Done right, you can...
#aspnet
#webforms
#mvc
#compatibility
#migration
#legacy
25 июля 2024 г. •
статьи
➤
.NET 8 Web API CRUD
Authentication and Authorization in .NET 8 Web API
https://sd.blackball.lv/articles/read/19656-authentication-and-authorization-in-net-8-web-api
Introduction In this article, we are going to discuss How to implement Authentication and Authorization in .NET 8 Web API. This is a continuation of.Net 8 series, so if you are new, Please have a look at my previous articles. Authentication and Authorization represent fundamentally different functions. In this article, we compare...
#net8
#webapi
#authentication
#jwt
22 июля 2024 г. •
статьи
➤
.NET
C# .NET 8 — Cache service with Distributed Cache
https://sd.blackball.lv/articles/read/19752-csharp-net-8-cache-service-with-distributed-cache
Introduction One common way to speed up our applications is by introducing a cache. Typically, the first option that comes to mind is using a MemoryCache (RAM) to save some data in order to speed up retrieval. This approach works well for monolithic applications. However, in the case of microservice solutions where...
#dotnet
#net8
#cache
#distributed cache
#redis
22 июля 2024 г. •
статьи
➤
.NET 8 Web API CRUD
Code First approach in .NET 8 API
https://sd.blackball.lv/articles/read/19655-ef-code-first-approach-in-net-8-api
Introduction In this article, we are going to discuss What Entity Framework is and How we can implement it in the .Net 8 project. This is a continuation of part 1, so if you are new to this article, please check my part 1 before proceeding. In this article, we are...
#net8
#webapi
#entityframeworkcore
#orm
«
1
2
3
4
5
6
7
8
9
10
...
»
»|
Поделиться ссылкой
Если вам понравился этот сайт и вы хотите меня поддержать, вы можете
Категории
Design Patterns
Software Engineering Workshop
Поддержка
➤
Boosty
Donate
to support the project
➤
Donorbox
Поддержать
GitHub account
Проекты
Blackball
Geolocation Assistant
Mail Daemon
Codebase
Amerikas Auto
Transport Certification Center