Posts by ThiagoGomes • 21 points
4 posts
-
0
votes4
answers288
viewsA: Error with vectors c# / {"Object reference not defined for an instance of an object." }
Why are you using an array as return ?? Could use a string list and at the end the method ToArray package System.Linq thus: lista.ToArray(); Apparently there are other errors in this code but you…
c#answered ThiagoGomes 21 -
0
votes2
answers152
viewsA: Hide div when you click it
Example of Hide with jquery Other animations can still be added. By default it is swing.
-
0
votes1
answer148
viewsA: How to save information(Cpf) from an Edit with mask and a numeric field
Ideal would be to create a Viewmodel mapper for the Model, where you should convert from the service layer call inside the controller. A suggestion is to use the library Automapper Maybe this answer…
-
2
votes0
answers544
viewsQ: Create Mysql Trigger / Stored Procedure to change features of a column
I am trying to create a Trigger/Stored Function for when the user changes the value of a column from 0 to 1 it changes the feature of another column CREATE TABLE `aluno` ( `CPF_ALU` varchar(11) NOT…