Posts by Fabio Zanardo • 45 points
4 posts
-
2
votes1
answer409
viewsQ: Search in a string with wildcards
I wonder if there is a function q search in a string, using wildcards. For example linha.contains("*//*#include");
c#asked Fabio Zanardo 45 -
0
votes1
answer439
viewsQ: List or Datatable desktop c#
I have an application used layers and I have a question... When the UI layer requests multiple records, it would be better to load the whole into a list<> or use the datatable? Today I use it…
c#asked Fabio Zanardo 45 -
1
votes2
answers250
viewsQ: Object error not instantiated
I have a model calling for ClientesModel. Inside it I have the fields: public int id { get; set; } public int codcli { get; set; } public string nome { get; set; } public string endereco { get; set;…
-
1
votes1
answer1121
viewsQ: Show only one record of each ID
I have a table Clientes and a ClientesTel. I need to present a list where the Código do Cliente, Nome, Telefone e o email, but by the structure I can have several phones. Follow the SQL I’m trying…