Posts by Robson Junior • 29 points
7 posts
-
0
votes1
answer867
viewsQ: How to have more than one GET request?
I want to be able to fetch my items by name and this function is also a get request only it already has other requests Get wanted to understand how to get as many as I want I understand the program…
-
0
votes1
answer435
viewsQ: Search mongodb by text?
I want to create a search in the items I am listing, I want to filter according to what user pass in a field type google.com click search and return the results that contain that text, but I want…
-
-1
votes1
answer57
viewsQ: How to get a div inside with css
How to make this arc in div with css ? I tried with border-Radius: 0px 0px 100% 0px; but it’s not cool…
-
0
votes0
answers44
viewsQ: Update data that has many to many relationship with Entity Framework
I’m trying to update an object and the only thing that doesn’t update is his relationship from many to many the rest as name and surname update [HttpPost] public IActionResult AtualizarProfessor(int…
-
0
votes1
answer54
viewsQ: When the property is not int how to force Entity to create a field in the table as nullable:false
Migration is generating the name field in the table as nullable:true i don’t want it to be true, as I do to solve this problem? public class Professor { public string Id { get; set; } public string…
-
0
votes1
answer189
viewsA: How do I pass a View value to the Controller in Asp.net core?
RESOLVED * I’m just not sure if this would be a bad practice, I’m sending the id to controller by creating a new task instance and associating it with an id and sent to Entity to delete. Creating a…
-
1
votes1
answer189
viewsQ: How do I pass a View value to the Controller in Asp.net core?
I want to go from View <table style="width:100%"> <tr> <th>Serviço</th> <th>Data</th> <th>Feito</th> </tr> @{ foreach (var item in…