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

Jan 28, 2020
Views: 448

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: 824

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: 802

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: 1614

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: 742

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: 10000

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: 2311

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: 1506

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: 1009

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: 691

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: 440

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: 1902

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: 434

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: 1321

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: 609

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