(Bipin Joshi) ASP.NET Core Web APIs and controllers often need to serialize JSON data to JavaScript clients. On the server side your C# classes typically use Pascal Casing to name properties whereas JavaScript code often uses Camel Casing for property names.
Author: SSWUG Research
Validation in ASP .NET Core 3.1
(Shahed C) This is the twenty-second of a new series of posts on ASP .NET Core 3.1 for 2020. In this series, we’ll cover 26 topics over a span of 26 weeks from January through June 2020, titled ASP .NET Core A-Z!
Copying a SQL Plan Baseline from one database to another
(Martin Bach) Hopefully this post saves you a few minutes looking the procedure up. I know it’ll save me some time 😉 In this rather lengthy article I’d like to cover how I copied a SQL Plan Baseline from one database to another.
Family Trees
(David Fitzjarrell) Dependencies come in many forms. When refering to Oracle two immediately come to mind — referential dependencies (primary/foreign key relationships) and object dependencies (tables, views, packages, triggers, functions and procedures).
Does your GI RU/RUR patch level has to match your database’s?
(Mike.Dietrich) A long while ago I blogged about whether you should keep your patch versions between Grid Infrastructure and Databases Homes in synch, or not.
How to build a progressive web app using React
(James Grills) Introduced by Google in 2015, Progressive Webs Apps, PWAs, are apps that offer a native app-like feel to web applications that are designed to work cross-platform.
End an ALTER DATABASE immediately if anyone is in the database.
(Kenneth Fisher) The development team has told me they’ve shut down the application, there are no more connections and I can go ahead and set the database to SINGLE_USER, or maybe RESTRICTED_USER before running various processes on it. I check and low and behold, no connections.
Easily Deploy Angular App To Azure From Visual Studio Code
(Sarathlal Saseendran) Already, there are many articles available about Azure deployment of Angular apps. Some articles misleading and you can’t deploy Angular apps referring those articles.
SQL SERVER – Restore Database With Just Log File
(Pinal Dave) Restoring the database with Just Log File is not possible. If you are looking for the answer to this question, you have bad news.
MySQL 8.0 InnoDB ReplicaSet with WordPress in OCI
(Frederic Descamps) Today’s article is again related to WordPress and MySQL 8.0. We will see how we can setup MySQL InnoDB ReplicaSet and configure WordPress to split the load using both MySQL Instances: we will split reads and writes between the Primary and the Secondary member of our ReplicaSet.