Search  
Always will be ready notify the world about expectations as easy as possible: job change page

Views: 794

A is for Authentication & Authorization B is for Blazor Full-Stack Web Dev C is for Cookies and Consent D is for Deploying to Azure App Service E is for EF Core Relationships F is for Forms & Fields G is for Generic Host Host Builder H is for Handling Errors I is for IIS Hosting J is for JavaScript, HTML/CSS & Static Files K is for Key Vault L is for Logging M is for Middleware N is for .NET 5.0, VS2019 Preview and C# 9.0 O is for Organizational Authentication P is for Production Tips Q is for Query Tags R is for Razor Pages S is for SignalR T is for Tag Helper Authoring U is for Unit Testing V is for Validation W is for Worker Service X is for XML + JSON Output for Web APIs Y is for YAML-defined CI/CD Z is for Zero-Downtime Web Apps

Aug 18, 2020
Views: 1364

Key Takeaways Developers keep moving to Single Page Applications (SPAs), though client-side development doesn’t mean you need a SPA in every case. There are several ways to use SPA frameworks with ASP.NET Core, including middleware, directory-based connection, or integration into your project. Middleware and directory-based methods come with some constraints,...

more...
Jul 16, 2020
Views: 3938

In this blog, I am going to provide a walkthrough on developing REST APIs using ASP.NET Core 3.1, connecting with existing databases using Entity Framework, creating a JWT token, and securing APIs. I am going to develop a sample application for an inventory REST service with basic operations. Table of...

more...
Jan 28, 2020
Views: 457

NetLearner: What is it? NetLearner is an ASP.NET Core web app to allow any user to consolidate multiple learning resources all under one umbrella. The codebase itself is a way for new/existing .NET developers to learn ASP.NET Core, while a deployed instance of NetLearner can be used as a curated...

more...
Aug 13, 2019
Views: 836

GraphQL mutations are actions which we use to Add, Update and Delete data from a database. Until now, we have been executing only GraphQL Queries (fetching data) but in this article, we are going to talk more about data mutations in GraphQL. Input Types and Schema Enhancing for the GraphQL...

more...
Aug 13, 2019
Views: 818

In this article, we are going to learn how to write advanced GraphQL queries and while doing that, we are going to show you how to handle errors and how to cache data inside a query. Furthermore, we are going to learn how to enhance our query (from a client...

more...
Aug 13, 2019
Views: 1650

In this article, we are going to learn how to set up GraphQL in ASP.NET Core application. We are going to use different third-party libraries to make this integration easier and will explain in detail how to use GraphQL elements (Type, Query, and Schema) to complete the integration process of...

more...
Views: 749

In this tutorial, we are going to learn how to integrate GraphQL with ASP.NET Core Web API application, how to write types, queries, and mutations. Furthermore, we are going to learn how to consume the GraphQL API with the ASP.NET Core app and Angular client application as well. We are going to show you how to create different queries, how to use aliases and arguments, as well as fragments and directives while creating a GraphQL query. After finishing with this tutorial, you are going to have the knowledge to integrate GraphQL into the ASP.NET Core app and you’ll have no problem using Queries and Schemas to retrieve and mutate data from a server.

Jul 26, 2019
Views: 11706

While we are working on a project, our main goal is to make it work as it supposed to and fulfill all the customer’s requirements. But wouldn’t you agree that creating a project that works is not enough? Shouldn’t that project be maintainable and readable as well? It turns out...

more...
Jul 15, 2019
Views: 2355

ORM: Object Relationship Mapper that maps your database directly with C# objects. There are many ORM tools available. One of them is Dapper. Dapper is known as the king of ORM. The following are the key features of Dapper: Speed and fast in performance. Fewer lines of code. Object Mapper....

more...
Jan 8, 2019
Views: 1553

There's no doubt that Entity Framework with LINQ is great (I've certainly written enough articles about it). But Entity Framework comes at a cost. As Matthew Jones points out on his blog, using LINQ+Entity Framework adds time to each data retrieval compared to using ADO.NET's SqlDataAdapter. The cost is...

more...
Oct 1, 2018
Views: 1033

Some time ago we published an article with a comparison of Angular 2 and React. In that article, we showed pros and cons of these frameworks and suggested what to choose in 2017 for particular purposes. So, what is the situation in the frontend garden in 2018? JavaScript frameworks...

more...
Aug 20, 2018
Views: 714

This article provides an introduction and conceptual background to working with .NET on Docker. Docker: Packaging your apps to deploy and run anywhere   Docker is an open platform that enables developers and administrators to build images, ship, and run distributed applications in a loosely isolated environment called a container....

more...
Jul 4, 2018
Views: 442

WEB FARM: A hosting environment consisting of multiple web servers is said to be a Web Farm. Usually a load balancer is used to tie together the web servers, which routes incoming requests amongst the servers within the web farm. And these incoming requests are routed in a variety of...

more...
Jun 18, 2015
Views: 1915

Try very, very hard to avoid using Response.Redirect(url), instead, use Response.Redirect(url, false). Response.Redirect(url), after writing a 302 redirect response to the response buffers, calls Response.End. This is very expensive. The alternative, Response.Redirect(url, false) is fast, but unlike Response.Redirect(url), the lines of code which follow the call to Response.Redirect(url, false) will...

more...
May 9, 2013
Views: 445

When we launch the Notepad program in Windows, the program executes inside of a container known as a process. We can launch multiple instances of Notepad, and each instance will run in a dedicated process. Using the Task Manager application, we can see a list of all processes currently executing...

more...
Apr 6, 2013
Views: 1379

Introduction A dynamic SQL in a stored procedure is a single Transact-SQL statement or a set of statements stored in a variable and executed using a SQL command. There may be several methods of implementing this in SQL Server. This article will show you a good method of doing this....

more...
Apr 3, 2013
Views: 677

Introduction This is just a simple article visually explaining SQL JOINs. Background I'm a pretty visual person. Things seem to make more sense as a picture. I looked all over the Internet for a good graphical representation of SQL JOINs, but I couldn't find any to my liking. Some had...

more...

© 1999–2024 WebDynamics
1980–... Sergey Drozdov
Area of interests: .NET Framework | .NET Core | C# | ASP.NET | Windows Forms | WPF | HTML5 | CSS3 | jQuery | AJAX | Angular | React | MS SQL Server | Transact-SQL | ADO.NET | Entity Framework | IIS | OOP | OOA | OOD | WCF | WPF | MSMQ | MVC | MVP | MVVM | Design Patterns | Enterprise Architecture | Scrum | Kanban