Posts by Rafael Leonhardt • 390 points
7 posts
-
1
votes1
answer106
viewsA: Doubt in the construction of WS REST(Contract)
The Entities classes you can keep in a single Class Library project (Example: Meuapp.Dominio). Optionally in this same project you can maintain the interfaces (Contracts) of your services, however .…
-
3
votes1
answer277
viewsA: Query of date check
In the example below will return only records with date less than the current date and time. In Oracle: SELECT * FROM TABELA WHERE CAMPODATA IS NOT NULL AND CAMPODATA < SYSDATE In SQL Server:…
queryanswered Rafael Leonhardt 390 -
3
votes2
answers483
viewsA: ASP.NET Identity and Windows Identity Foundation (WIF)?
WIF is an authorization model based on claims (statements) and not only in roles (roles) as is usually done. With claims a user gets more information about it, for example, age 18 and favorite food…
-
11
votes1
answer702
viewsA: Meaning of (void *)
The (void *) means that it is a pointer to a variable not specifying the type of the variable. For example, one can have the same concept with (int *) where it is a pointer to a variable of type…
-
3
votes3
answers156
viewsA: What name is given to code modeling/notation?
Generally this concept is related to a DSL (Domain Specific Language - http://en.wikipedia.org/wiki/Domain-specific_language). Concept: a particular problem representation technique.…
pseudocodeanswered Rafael Leonhardt 390 -
2
votes1
answer774
viewsA: How to make a select using Angularjs?
I believe the problem with your example is in ng-options, try to replace with: ng-options="item as item.value for item in itens" The following is an example that works in a more simplified scenario…
-
1
votes1
answer1319
viewsA: How to enable a button after completing the required fields?
How are you using AutoPostBack="True" in the data entry controls, you can enable and disable the button in the page Load. protected void Page_Load(object sender, EventArgs e) { btnPrint.Enabled =…