Posts by Leandro Souza • 76 points
3 posts
-
1
votes2
answers135
viewsA: Problem with a list of selectable items that are stored in an array
To make your logic easier, in your list you add an attribute selected thus: const LISTA = [ { id:1, title: "Teste", selected: false, }, { id:2, title: "Teste2", selected: false, }, { id: 3, title:…
-
0
votes1
answer43
viewsA: Vector problem in C++
You are trying to assign a variable a different type than what you set for it. This happens in this command: vector<string> lista_senha = le_arquivo_login(); The variable list_login is the…
-
5
votes2
answers67
viewsA: Is there a better way to deal with relational and non-relational databases in the same project?
The idea is to create an interface, and in this interface you define the operations that will exist for two banks, such as update, create, getById and etc. You must use a Repository for each domain…