1
I Use This!
Inactive

News

Analyzed 6 days ago. based on code collected about 1 month ago.
Posted over 13 years ago by [email protected] (Nicholas Cloud)
Ok, this is frustrating. I am trying to put together a presentation on NCQRS, following the getting started guide (sans WCF services--I want to use NCQRS directly in an MVC3 app). I am using the master branch from GitHub, which does not build for me ([link]) because
Posted over 13 years ago by [email protected] (Richard Dingwall)
Hi, we're trying out NCQRS on a new project at work, and just noticed the UnitOfWork/UnitOfWorkFactory require a Command ID. This means, if there is no command in context - e.g. in an event handler for an event that was raised by an AR by another event handler - we cannot persist AR changes using a UnitOfWork. Or, slightly
Posted over 13 years ago by [email protected] (Dennis Traub)
How do I store events as part of setting up my tests? Currently I'm initializing application state by sending commands like this: Given some commands were sent When sending another command Then some events should have been published I'm using IService.Execute() to send the Commands in the "Given" and "When"
Posted over 13 years ago by [email protected] (Nicholas Cloud)
I am trying to build the master branch using he build.bat file, and this exception keeps getting thrown, causing the tests to fail: <[link]>
Posted over 13 years ago by [email protected] (Nicholas Cloud)
What is the point of putting command executors in their own project, as opposed to packaging them with domain classes in a .Domain project?
Posted over 13 years ago by [email protected] (Nicholas Cloud)
The NCQRS package on NuGet is version 0.8.0.0 -- is this the latest version of the project? Is this kept up-to-date with code that is released in GitHub? NuGet shows that the last time the package was updated was Jan. 2011.
Posted over 13 years ago by [email protected] (Cristobal Galleguillos Katz)
How can I test Event Handlers? The tests in the examples only check expectations on the events raised, but I'd also like to test that the event application modifies the domain correctly. Is there a recommended or suggested way to do this? Thank you, and keep up the nice work,
Posted over 13 years ago by [email protected] (nafas)
Hi, In our case we have data files coming from external system once a day. The entities in those files have Ids assigned by external system and are in “XXX-XXXX-XXXX” format. Now, Ncqrs uses Guid type for the EventSourceId and the AR Id and in the reference it states "EventSourceId should always be initialized
Posted over 13 years ago by [email protected] (Greg Young)
After working through some of Marco's code we will be building up some documentation on how to use MM with ncqrs as it is a little bit tricky. For those with a MM license now, it should work properly in the next release for you. The issues that we ran into have to do with ncqrs.specs as a separate library (eg: having your setups being
Posted over 13 years ago by [email protected] (mynkow)
Hey, [link] The question was a preparation for the actual question... Just follow the code sample and comments there. Later I can summarize this one and address the problem in details...