Posts by Silas Humberto Souza • 11 points
2 posts
-
1
votes2
answers83
viewsA: Persistence using Fluent API
The way you’re mapping it is a many-to-many relation... If you want a client to have multiple addresses try something like this: public class ClienteEntity { [Key] public int Codigo { get; set; }…
-
0
votes2
answers291
viewsA: Problem when performing delegate bind in ninject
The Eventstoredbcontext class has a type parameter? if not try something like this: Bind<EventStoreDbContext>().ToSelf().InTransientScope().WithConstructorArgument("EventStore");…