(Marc Goodner) A great strength of C++ is the ability to target multiple platforms without sacrificing performance. If you are using the same codebase for multiple targets, then CMake is the most common solution for building your software.
Tag: Development
Deploying A Blazor Application On Azure
(Ankit Sharma) In this article, we will learn how to deploy an ASP.NET Core hosted Blazor application on Azure. We will use Visual Studio 2017 to publish the app and create a SQL database server on Azure to handle DB operations.
Understanding The Limitations Of Template Syntax Desugaring In Angular 7.0.4
(Ben Nadel) Last week, I looked at the fact that the Async Pipe “as” syntax is nothing more than the “$implicit” view context property provided by the current directive (which turns out to not be exactly true, as demonstrated below).
Use MongoDB In ASP.NET Core (Part – 1)
(Bipin Joshi) Now a days NoSQL databases are not uncommon. One such popular database is MongoDB. MongoDB is an open source and cross platform database that allows you to store data in the form of documents. This article series illustrates how MongoDB can be used in ASP.NET Core applications.
Benefits of the Microsoft Azure Cosmos DB
(Tapas Pal) Microsoft Azure Cosmos DB is an abstraction level over data stores like Azure DocumentDB and Table Storages, which is a globally distributed multi-model database service.
What’s up with Code Analysis rule CA2202: Do not dispose objects multiple times?
(Raymond Chen) You thought you’d be able to make it through the entire year without suffering through a CLR Week. And you almost made it.
HTTP-REPL Tool to test WEB API in ASP.NET Core 2.2
Today there are no tools built into Visual Studio to test WEB API. Using browsers, one can only test http GET requests.
Using Presentation Components In Order To Hide Async Pipe Complexity In Angular 7.0.3
(Ben Nadel) Last week, I shared some of my frustration over the elusive nature of State Management in a JavaScript Single-Page Application (SPA); and, my not-so-novel idea of a “Runtime” abstraction that would completely hide the very notion of state management from the application View.
ASP.NET Core And Entity Framework Core CRUD Operations
(Debasis Saha) Entity Framework is an open-source framework which totally depends on ORM Framework (Object Relational Mapping). This framework gives an opportunity for the developer to work with data using different domain objects which specified in the model classes.
How to unit test Internal classes in .NET Core applications?
(Anthony Giretti) The creation of unit tests is an important step in ensuring the quality of a project. In general, most public methods are tested, but what if you want to test a non-public part of the project?
