Background I am looking to do a project that allows Multi Tenant access to a SPA created in Angular. I will use Asp.Net Core 2.0 Web Api for the rest calls. For this walk-through I will be keeping...
I have come across an error “Self referencing loop detected for property…..” when working with EF Core. Turns out, EF is trying to return data that inherently has a self-referencing loop. The Json...
I have been really liking what Docker can offer and have been experimenting with it whenever possible. In the July issue of MSDN magazine, Julie Lerman wrote about using SQL Server in a Docker cont...
This article is a continuation of the customized Asp.Net Identity database that was created in previous posts. Create The Project Start by creating a SQL Server Database Project. To go along with...
Let’s Run Some EF Migrations Already! Now we will run the EF Code First Migrations and build our database……Finally!! To run the migrations, we will need a the Nuget Package Manager Console. No...
Cross Reference / Join / Junction Table I would like to associate the new AspNetApplications table to the users table. If I want a user to be allowed access to multiple Applications and I want App...
Add New Table Now let’s add a whole new table. Let’s add an Applications table to house our application information. We will tie this table to our users in a later post. For now, let’s just get th...
Add Fields to User Table Now I would like to add 3 fields to the AspNetUser that will be created for us. In addition to the login information, I would like to add a First Name field, Last Name fie...
Set The Stage So let’s set the what and why we will be doing. Our fictitious company, Apothecaric Consulting is a small consulting firm with a few employees and a few subcontractors. Apothecaric w...
So I was thinking about how a small organization could leverage single-sign-on without having to leverage a larger Identity server implementation such as Thinktecture’s Identity Server 3. I reserv...
A new version of content is available.