Posts by Felipe Augusto • 74 points
3 posts
-
-1
votes4
answers815
viewsA: Reflection of an Object that is owned by another
Please change the code to: obj.Gettype(). Getproperty("id"). Name --Edit static void Main(string[] args) { Aplicacao obj = new Aplicacao(); Console.WriteLine(GetName(() => obj.id)); } public…
-
1
votes4
answers815
viewsA: Reflection of an Object that is owned by another
If you are using C# 6, use the reserved word nameof As an example I suggest you follow the link below http://www.c-sharpcorner.com/UploadFile/7ca517/the-new-feature-of-C-Sharp-6-0-nameof-operator/…
-
4
votes2
answers516
viewsQ: Should the Domain layer depend on Infrastructure?
I’m reading Evans' book on D.O.D., and I came across the following quote:: The Infra layer does not perform any action on the domain layer, because it is below it, because it is below it it should…