Posts by Wesley Santana • 11 points
3 posts
-
0
votes2
answers339
viewsA: Return of a View List to the Controller - Asp.Net Core
Solved. In this case you cannot use List because in HTML the Ids in the inputs inside the loop are repeated and cause the problem, you must use vector.
-
0
votes2
answers339
viewsA: Return of a View List to the Controller - Asp.Net Core
Barbetta, that’s what you wanted to see? public class Bootstrap { public static List<PerfilGenerico> _listaPerfil { get; private set; } public static void Configuracao(IServiceCollection…
-
1
votes2
answers339
viewsQ: Return of a View List to the Controller - Asp.Net Core
I have a viewmodel called Profile, in this viewmodel there is a Itensprofile List property and a string - title. public class PerfilViewModel { [Key] [DisplayName("Código")] public int Id { get;…