Posts by Elkin • 586 points
12 posts
-
2
votes2
answers151
views -
1
votes2
answers151
views -
17
votes2
answers8421
viewsA: What is Cross-Cutting and what is its relationship to Aspect Oriented Programming (AOP)?
And in a DDD architecture what its function? In a DDD architecture, Eric Evans in his 2004 book entitled: Tackling Complexity in the Heart of Software tells us that the function of the…
-
0
votes5
answers19908
viewsA: .NET C# IIS Request cancelled: Failed to create secure channel for SSL/TLS
Request cancelled: Failed to create secure channel for SSL/TLS. this error is quite generic and has several things that can generate it... I already had a similar error only in my case it was…
-
1
votes3
answers3091
viewsA: Why doesn’t getJson work?
to use " . "you must have a json Object: take a look later at the documentation the difference between json string, and json Object in the jquery library. you have to use . parseJson(); example:…
-
2
votes0
answers103
viewsQ: Logging, Registration, Permissions C#
Guys I would like to know in a logical and robust way and very clear, how the organization behaves in a software that will possess: -Logging (any and all actions performed on the system must be…
-
0
votes2
answers324
viewsA: How to define a fixed value attribute in ASP.Net MVC?
I would wear: public class Usuario { ... public const int Permissao = 1; } if it is always just a number with no rules, no validations with nothing, then it makes sense to be a constant and ready :)…
asp.net-mvcanswered Elkin 586 -
2
votes1
answer379
viewsA: View Popup asking for authentication when you click on a screen component that you are not allowed to change
a possible solution I see would be, you bring from your Viewmodel a boolean, and then you could check in the view whether or not the user is logged in and if you have permission with a simple IF....…
-
2
votes3
answers446
viewsA: Could someone explain to me the term "Specification Pattern", applied in Javascript?
I suggest you stop long enough to reflect on your code and try to separate the responsibilities using OO concepts, there is no problem in using Specification in javascript since Specification is an…
-
-1
votes3
answers238
viewsA: Prevent an action from being intercepted by the Interceptor Handle
Look, I think your problem is exactly the way you wrote the preHandle method() note when debugging that if the first condition is satisfied you already end the method by giving true Return; or that…
-
11
votes4
answers42803
viewsA: What really is DDD and when does it apply?
One of the big problems of adopting DDD, from my point of view, is that you need a solid knowledge of the language technology that you use: when we take to study the DDD, the authors experts even…
-
8
votes3
answers2089
viewsQ: How to implement business rules or system rules using Domain Driven Design in C#?
I’m having doubts on how to separate business rules from system rules with the DDD. If I have for example a Class Usuario with id,nome,login,senha as properties. A domain rule would require a…