Mike Rousos

Principal Software Engineer, .NET Customer Engagement

Mike's a long-time member of the .NET team. He lives in northeast Ohio with his wife and four kids.

Post by this author

Implementing Seeding, Custom Conventions and Interceptors in EF Core 1.0

This post was written by Alina Popa, a software engineer on the .NET team. Updated 10/5/2016: This post has been updated to use improved Entity Framework Core techniques which don’t rely on internal APIs. Implementing Seeding, Custom Conventions and Interceptors in EF Core 1.0 Introduction Entity Framework Core (EF Core) is a ...

Custom ASP.NET Core Middleware Example

One of the great things about ASP.NET Core is its extensibility. The behavior of an ASP.NET Core app's HTTP request handling pipeline can be easily customized by specifying different middleware components. This allows developers to plug in request handlers like MVC middleware, static file providers, authentication, error pages, or even their ...