Replies: 2 comments 3 replies
-
|
I tried this way, but I could not initialize the handler of the module properly. Any idea? |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Try this // add in the Create, just after the handler parameter
[FromServices] IServiceResolver<IOtherSaveHandler> otherSaveHandlerResolver
// ..
var sr = new SaveRequest<OtherRow> { Entity = otherRecord };
otherSaveHandlerResolver.Resolve().Create(uow, sr);hth |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
Any example how you are calling the create endpoint of a module (module1) inside the create endpoint of another module (module 2) given that they have different handlers.
Beta Was this translation helpful? Give feedback.
All reactions