Tel Map

Kategorie: ASP .NET

ASP .NET

10.10.2017 | ASP .NET |

ASP.NET Core 2.0 Disable Authentication in Development Environment

This article describes how to disable authentication for ASP.NET Core 2.0. ASP.NET Core JWT Authentication I have some Rest API which I want to protect via JwtBearer token in production e.g.

  However in order to test the API, for development I… mehr

19.04.2016 | ASP .NET |

Hangfire Dashboard and ASP .NET 5

This article demonstrates how the Hangfire dashboard can be set up in an ASP .NET 5 application including authentication via ASP .NET Identity. Adding Hangfire Packages project.json:

Since I am using Hangfire with SQL, I have to add Hangfire itself and Hangfire.SqlServer… mehr

11.04.2016 | ASP .NET |

302 Redirect VS 401 Unauthorized – ASP .NET 5 Identity

302 API Redirect Problem If you make a request to a REST service and are not logged in, by default ASP .NET 5 Identity returns a 302 Redirect to login page. This is great if you are visiting the URL of a controller… mehr

04.04.2016 | ASP .NET |

ASP .NET 5 MVC 6 Identity Authentication

In this article I will demonstrate how to restrict controller access to users that have already logged in. In the second part I will show how to do authentication using a REST Controller. Access Restriction In order to restrict access to a Controller… mehr

21.03.2016 | ASP .NET |

ASP .NET 5 Identity with Entity Framework 7 Setup

In this article we will demonstrate how to provide authentication to ASP .NET 5 applications using ASP .NET Identity with Entity Framework 7. Adding Packages Add the following package to your ASP .NET project. This will automatically pull in additional required dependencies… mehr

14.03.2016 | ASP .NET |

Dependency Injection in ASP .NET 5 MVC 6

With ASP .NET 5 MVC 6 you do not have to rely on external Dependency Injection (DI) libraries any more. It comes with it’s on onboard DI. I will now demonstrate how to set up Dependency Injection for using Entity Framework 7… mehr

07.03.2016 | ASP .NET |

Code First Migrations Entity Framework 7

Create Initial Code First Migration In order to do Code First Migrations, you first have to set up the command dnx ef. Code first means, that you first do database model changes in the Entity Framework database classes and then apply the changes to… mehr

02.03.2016 | ASP .NET |

Entity Framework 7 Scaffold DbContext from Existing Database

In previous to 7 versions of the Entity Framework all Entity Framework related commands could be executed within Visual Studio. Now you have to use the new ASP .NET 5 dnx command instead. DbContext Model Migration from Entity Framework 6 In order… mehr

25.02.2016 | ASP .NET |

ASP .NET 5 with Entity Framework 7

Adding Entity Framework 7 Packages to ASP .NET Project Older versions of the Entity Framework need a full .NET runtime in order to work. If at some point you want to use the new .NET 5 Core e.g. to run your application… mehr

01.02.2016 | ASP .NET |

ASP .NET 5 Toolchain Setup with Visual Studio 2015

During the Visual Studio installation include ASP .NET and the Microsoft Web Developer Tools Create a new ASP .NET 5 project using Visual Studio File -> New -> Project From the templates select ASP .NET Web Application In the next step select one… mehr