1
I Use This!
Inactive

News

Analyzed 6 days ago. based on code collected about 1 month ago.
Posted about 13 years ago by [email protected] (ichineseflashcards 8)
[link] will help you learn Chinese (Mandarin) faster by using flashcards with pictures, thanks
Posted about 13 years ago by [email protected] (雪华 汤)
In the CQRS architecture, i have several problems/ideas(about how to implement inter-aggregate communication) which has struggle to me several months and eagerly want to discuss to you. For short, i have the following problems/ideas: 1. Aggregate(AG) will communicate with each other in some times(e.g.
Posted about 13 years ago by [email protected] (Steve B)
Hello, One of the most missing "feature" of Ncqrs is a decent documentation. I know this is very time consuming. But as it's an open source project, why don't moving/creating the Ncqrs tutorial and reference to a full community wiki ? I think the power of an open source project come when the number of
Posted about 13 years ago by [email protected] (Jason)
I need to handle a command that affects two different aggregate root types (across a bounded context). My understanding is that this should be done in a Domain (Application) Service. Where and how should I handle this in ncqrs? Thanks.
Posted about 13 years ago by [email protected] (o-range)
In AggregateRootTestFixture events come to PublishedEvents list in EventApplied handler { AggregateRoot = CreationStrategy.CreateAggrega teRoot<TAggregateRoot>(); ... AggregateRoot.InitializeFromHi story(stream); ... AggregateRoot.EventApplied += (s, e) => PublishedEvents.Add(e.Event);
Posted about 13 years ago by [email protected] (Galen)
Hello, Just wondering is it possible to have a generic NSB event Handler for NCQRS event-messages. If so can I get a hand with the syntax. Cheers Galen
Posted about 13 years ago by [email protected] (João Oliveira)
I don't know if other people than me are having trouble setting up the sample application from the Getting Started section in the NCQRS website. I had some issues when I tried to run the WCF service. I happened to understand that there is some strange dependency from Newtonsoft.Json.dll in order for it to work right.
Posted over 13 years ago by [email protected] (Wayne Douglas)
Here is my code: Assembly commandAssembly = typeof(CreateUserAccountComman dHandler).Assembly; var service = new Ncqrs.Commanding.ServiceModel. CommandService(); service.RegisterExecutorsInAss embly(commandAssembly); never seems to do it though?
Posted over 13 years ago by [email protected] (Henrik Olsson)
I'm trying to use ncqrs for a prototype. If I simplify the domain I have three entities: healthcare facility, booking and person. I chose healthcare facility as an AR with a collection of bookings, and person as another AR. Booth healtcare ... [More] facility and person have external IDs (non-guids), but the also have internal IDs (guids) which are generated by [Less]
Posted over 13 years ago by [email protected] (Wayne Douglas)
Hi I have the need to allow UI developers to work using an MVC project which is only associated with the NCQRS envirnment via a WCF service. To save on unecessary mappings and complexity i use the commands as params to the WCF service and the ... [More] service just proxies them to the environment: var cmd = input.MapTo<CreateUserAccountC ommand>(); [Less]