Posts by tvdias • 2,953 points
153 posts
-
0
votes1
answer48
viewsA: Map Procedure in Entityframeworkcore
Use the Line to change the data after performing your query. You can group by cod_us with the GroupBy var respostaAgrupada = respostaProcedure.GroupBy(x => x.cod_us); And later use the .Select to…
-
0
votes2
answers309
viewsA: Integration between Console Application, Webservice and Frontend Web C#
By describing your problem you should use a scheduling library, such as the hangfire. With the very own web application template mvc of visual studio you can create a page with the run button, calls…
-
0
votes1
answer38
viewsA: Sending data via ajax generating new "_id" in Mongodb
Apparently you are mixing the string and objectid types in _id. Barter let updateUser = await User.updateOne({_id}, {$set:{ email, name, userType }}); for let updateUser = await…