Using enum for dropdown list in ASP.NET MVC Core

后端 未结 8 1286
你的背包
你的背包 2021-01-31 06:51

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

Here is the model:

public class Per         


        
8条回答
  •  忘了有多久
    2021-01-31 07:38

    I got the same problem, I burned my head looking for a solution!

    You can solve this situation, instantiating you model on top of your view like:

    @using CRM.Model;
    

    @using YourSolution.Model

    Yes, it sounds too strange but belive me, it works! See my answer on my own post.

    Select ENUM Tag Helper in ASP.NET Core MVC

提交回复
热议问题