Posts by Marcio Fonseca • 31 points
4 posts
-
1
votes0
answers22
viewsQ: How to split Context into multiple files?
I am refactoring a large project that has about three hundred tables using . Net Core and Oracle.Entityframeworkcore With scaffold it generates me a Modelcontext. However, it would be huge if I did…
asp.net-coreasked Marcio Fonseca 31 -
1
votes0
answers22
viewsQ: How to scaffold an existing base with Oracle.Entityframeworkcore without user superpowers?
I’m trying to do the scaffold of an Oracle base with Oracle.Entityframework.Core, but according to this link dotnet-db-samples, the following permissions are required: GRANT…
-
0
votes3
answers494
viewsA: Problem with a Boolean field on Asp.net MVC
Try it like this: @model IEnumerable<MeuProjeto.Models.AlunoCurso> @{ Layout = "/Views/Shared/_Layout.cshtml"; } <h2>Aprovar Aluno </h2> @foreach (var item in Model.GroupBy(ac…
-
1
votes0
answers38
viewsQ: Ajax request returns decimal zeroed from SQL
Dear friends, I have an Asp Net MVC5 application that makes use of ajax in both inclusions and selects. The recording of the decimal values occurs normally in the Sqlserver database but the recovery…