Posts by Yoshitani • 81 points
5 posts
-
1
votes1
answer70
viewsQ: Share on a web service with the client
I created a web service where there are numerators to keep track of an attribute of the whole type, I would like to know how to access this enumerator of another project in which I am using this web…
-
0
votes1
answer97
viewsA: Error: Could not parse type 'xxx[]' because it does not have any known mapping to the value layer
After a few attempts I managed to solve just by putting . Asenumerable() before the consultation, I just found it strange that in the form I normally use the consultations did not work... Would…
-
0
votes1
answer97
viewsQ: Error: Could not parse type 'xxx[]' because it does not have any known mapping to the value layer
In the controller I have my session built. public const string ListaPermissao_SessionName = "ListaPermissao"; private List<ListaPermissao> ListaPermissaoEnvio { get { if…
-
4
votes1
answer964
viewsQ: How to delete objects within a list?
I have the following code: using (Context contexto = new Context()) { List<Cliente> listCliente = contexto.Cliente.Where(x => x.Status == 0).ToList(); } How do I delete this result from the…
-
2
votes3
answers725
viewsQ: ASP.NET MVC Web - How to separate performance between the modules of a project?
Explaining the doubt. Within my system there are some menus, we will use as example 3, naming them A, B and C, each being a CRUD module with some kind of report. If 300 people are using module A, it…