Top "Asp.net-core-mvc" questions

ASP.

Access Web.config settings in Asp.Net Core App?

I understand that asp.net core has a new configuration system that is quite flexible and that's great. But there …

asp.net asp.net-core-mvc asp.net-core-1.0
Can I generate script of a migration with EF code first and .net core

I'm building a MVC application with .Net Core and I need to generate the script of a migration. With EF6 …

.net entity-framework asp.net-core asp.net-core-mvc entity-framework-core
Increase upload file size in Asp.Net core

Currently, I am working with Asp.Net Core and MVC6 need to upload file size unlimited. I have searched its …

c# asp.net-core asp.net-core-mvc
Creating a proxy to another web api with Asp.net core

I'm developing an ASP.Net Core web application where I need to create a kind of "authentication proxy" to another (…

c# asp.net asp.net-core-mvc asp.net-core-webapi
How can I get Url Referrer in ASP.NET Core MVC?

I am trying to migrate an ASP.NET MVC webform to ASP.NET Core MVC. Currently, I am having trouble …

c# asp.net-core asp.net-core-mvc
Dependency injection, inject with parameters

I'm using vNext implementation of DI. How to pass parameters to constructor? For example, i have class: public class RedisCacheProvider : …

c# asp.net-core dependency-injection asp.net-core-mvc
Using enum for dropdown list in ASP.NET MVC Core

I'm trying to create a dropdown list with an enum property in ASP.NET MVC Core using the tag helper …

c# asp.net asp.net-mvc enums asp.net-core-mvc
ASP.NET Core MVC : How to get raw JSON bound to a string without a type?

Similar to this old question about prior ASP.NET versions, I want to get the request body of an HTTP …

c# asp.net-mvc asp.net-web-api asp.net-core-mvc
SQLite in ASP.NET Core with EntityFrameworkCore

How do you add and use an SQLite database in an ASP.NET Core web application, using EntityFramework 7 ? I dived …

c# asp.net-mvc sqlite asp.net-core-mvc entity-framework-core
Redirect to login when unauthorized in ASP.NET Core

In the previous ASP.NET MVC, there was an option to redirect to the login action, if the user was …

c# asp.net asp.net-core asp.net-identity asp.net-core-mvc