Questions tagged as 'ddd'

1
answer

C # Entity DbSet with DDD?

I have an application C# MVC with DDD and in repository I'm making the call like this: return DbSet.Include(i => i.Cliente).FirstOrDefault(a => a.ProcessoId == processoId); DbSet-> is in repositoy...
asked by 08.12.2016 / 20:44
1
answer

Exchanging Value Object in the database

I'm reading the DDD book (Eric Evans) that says implementations of Value Object are immutable and if you want to change it, you'll have to create another one. In more common examples where you have a class Pessoa and another class En...
asked by 18.08.2016 / 05:36
1
answer

Error trying to recreate a table with code first (Migration)

I'm following the Eduardo Pires tutorial on DDD + Asp.Net MVC 5 + IoC and etc. Well, in the first attempt to create the bank and the customer table, it was gem. It turns out that Eduardo made some changes and I followed (I'm learning from him) a...
asked by 03.03.2017 / 18:15
1
answer

ASP.NET MVC vs. Angularjs with WEBAPI [closed]

In a web project (type a "small" ERP, rs) where some companies would manage their affiliates being able to exist several connected users, what would be better in performance and performance (I know that each case is a case, but in general) in yo...
asked by 30.10.2015 / 13:09
2
answers

I can not initialize Automapper 6.2.2 Settings Asp.netcore 2.0

In my Application layer, I have the following classes: public class AutoMapperConfig { public static MapperConfiguration RegisterMappings() { return new MapperConfiguration(cfg => {...
asked by 14.01.2018 / 18:25