Posts by Jose Aguiar • 23 points
3 posts
-
0
votes0
answers53
viewsQ: Entity Framework is not saving all information from the list
I have a problem that I cannot solve in any way with Entity Framework. In this scenario I am receiving information from the front, and then I need to save it in the database, however, when I have 2…
-
2
votes1
answer155
viewsQ: Data is not displayed in the table by Abstracttablemodel
I am developing a ticket request system, but for having to add a JXDataPicker in the table, I had to implement the AbstractTableModel. The model apparently agrees with the documentation, I can…
-
-3
votes3
answers210
viewsQ: How would I look regex to handle this case?
I’m not able to separate words this way: In case I have CPFConsole, wanted to separate to cpf and console. The code I have separates so: ([A-Z][a-z]+)|([a-z]{0,})|([A-Z]{2,}) But that code separates…