Skip to content Skip to sidebar Skip to footer

Technology

Neo4j Database Part 04: Cypher Object Notation

In the last blog I described the objects that make up a Neo4j database. In this blog I will discuss how we create each database object. It would be impossible to learn Neo4j without learning the Cypher query language. At the time of writing the UI and the most popular client query libraries all rely…

Understanding ES6 Classes in JavaScript

Javascript ES6 has come a long way to look like regular OOP languages and move away from looking functional or prototypical. This probably upsets quite a few dev’s but not me. I don’t particularly like Javascript so anytime I can get my classes looking like the classes in C# for example is all good to…

Neo4j Database Part 03: Database Objects

In the last blog I introduced some neo4j basics for managing a database and how to interact with it. In this blog I will begin to uncover the objects that make up a Neo4j database. This is very important when it comes to defining the correct data model. You will be pleased to know that…

OData v4 in ASP.NET WebApi Part 04: Metadata Document

This is a series of blogs detailing my introduction to using OData v4 with C# and ASP.NET WebApi. An OData Metadata Document shows a more detailed XML data model that describes the data and operations exposed by an OData service. All OData services must have metadata document. The Metadata Document URL must be the root…

OData v4 in ASP.NET WebApi Part 14: Query Options SELECT

This is a series of blogs detailing my introduction to using OData v4 with C# and ASP.NET WebApi. The source code for the project can be found here. Up to now we have been creating individual controller actions for our entities either for selecting all entities or selecting entities by key. One of the powers…

Azure REST API Part 01: Introduction with Postman

In this series of blogs I want to show how we access the Azure REST API directly using Postman in order to understand how applications can get authenticated and authorized automatically without having the user enter a username and password. Overview The Azure REST API is the under pinning’s for all the other…

Installing a PostgreSQL Cluster in Azure on Red Hat Linux

The idea of this post is to document my journey to building PostgreSQL on a Red Hat Linux server in Microsoft Azure. The post assumes the reader has experience using Microsoft Azure so those steps will not be detailed. A lot of the information came from this Microsoft link. From Azure I selected Create a…