Posts by nfrigo • 51 points
5 posts
-
3
votes1
answer32
viewsQ: Migration Conventions
I have an MVC DDD application that uses Sqlserver. I’m trying to get the database to Postgressql, but there is a FK duplicity error. For example, the default Sqlserver would be generated:…
-
0
votes1
answer87
viewsA: Problems serializing object to XML
I figured out how to solve the problem, so I’ll leave it documented for others who might need it. All properties that have "Specified" must be defined with true so that it can be serialized and…
-
0
votes1
answer87
viewsQ: Problems serializing object to XML
After serializing an object to XML some properties disappear. These objects were automatically generated with the add and do not have [System.xml.Serialization.Xmlignoreattribute()] but are not…
-
2
votes2
answers554
viewsQ: Where to place a non-entity object in the DDD
My ASP.NET MVC project in C# has a Domain layer where I have entities, and business rules. I need to add a new rule where I should return an object with an internal list, but I ended up having a…
-
0
votes1
answer142
viewsQ: C# Entity Dbset with DDD?
I have an app C# MVC with DDD and in the repository I’m making the call like this: return DbSet.Include(i => i.Cliente).FirstOrDefault(a => a.ProcessoId == processoId); DbSet-> is in the…