AzureFunctions-TheLongRun-Leagues icon indicating copy to clipboard operation
AzureFunctions-TheLongRun-Leagues copied to clipboard

Demo code for CQRS on Event Grid

Results 5 AzureFunctions-TheLongRun-Leagues issues
Sort by recently updated
recently updated
newest added

This error only seems to occur in the DEV runtime on a local machine (so far). In **TrySyncTriggersAsync** `` [{"type":"httpTrigger","methods":["get"],"authLevel":"anonymous","name":"req","functionName":"AboutQuery"},{"type":"httpTrigger","methods":["post"],"authLevel":"function","name":"req","functionName":"CreateLeagueCommandHandler"},{"type":"activityTrigger","name":"context","functionName":"CreateLeagueCommandHandlerAction"},{"type":"activityTrigger","name":"context","functionName":"CreateLeagueCommandLogParametersActivity"},{"type":"httpTrigger","methods":["post"],"authLevel":"function","name":"req","functionName":"CreateLeagueCommandValidation"},{"type":"activityTrigger","name":"cmdRequest","functionName":"CreateLeagueCommandValidationAction"},{"type":"eventGridTrigger","name":"eventGridEvent","functionName":"EchoContent"},{"type":"httpTrigger","methods":["get"],"authLevel":"function","name":"req","functionName":"GetAllCommandsIdentifierGroup"},{"type":"activityTrigger","name":"context","functionName":"GetAllCommandsIdentifierGroupActivity"},{"type":"httpTrigger","methods":["get"],"authLevel":"function","name":"req","functionName":"GetAllLeaguesIdentifierGroup"},{"type":"activityTrigger","name":"context","functionName":"GetAllLeaguesIdentifierGroupActivity"},{"type":"httpTrigger","methods":["get"],"authLevel":"function","name":"req","functionName":"GetAllQueriesIdentifierGroup"},{"type":"activityTrigger","name":"context","functionName":"GetAllQueriesIdentifierGroupActivity"},{"type":"httpTrigger","methods":["get"],"authLevel":"function","name":"req","functionName":"GetAllQueryStatusByName"},{"type":"orchestrationTrigger","name":"context","functionName":"GetAllQueryStatusByNameOrchestrator"},{"type":"httpTrigger","methods":["get"],"authLevel":"function","name":"req","functionName":"GetCommandStatusInformationProjection"},{"type":"activityTrigger","name":"context","functionName":"GetCommandStatusInformationProjectionActivity"},{"type":"activityTrigger","name":"context","functionName":"GetLeagueSummaryCreateQueryRequestActivity"},{"type":"httpTrigger","methods":["get"],"authLevel":"function","name":"req","functionName":"GetLeagueSummaryGetResults"},{"type":"activityTrigger","name":"context","functionName":"GetLeagueSummaryGetResultsActivity"},{"type":"activityTrigger","name":"context","functionName":"GetLeagueSummaryLogParametersActivity"},{"type":"httpTrigger","methods":["get"],"authLevel":"function","name":"req","functionName":"GetLeagueSummaryOutputResults"},{"type":"activityTrigger","name":"context","functionName":"GetLeagueSummaryOutputResultsActivity"},{"type":"activityTrigger","name":"context","functionName":"GetLeagueSummaryQueryProjectionProcessActivity"},{"type":"orchestrationTrigger","name":"context","functionName":"GetLeagueSummaryQueryProjectionProcessOrchestrator"},{"type":"activityTrigger","name":"context","functionName":"GetLeagueSummaryQueryProjectionRequestActivity"},{"type":"httpTrigger","methods":["get"],"authLevel":"function","name":"req","functionName":"GetLeagueSummaryQueryProjectionsProcess"},{"type":"httpTrigger","methods":["get"],"authLevel":"function","name":"req","functionName":"GetLeagueSummaryQueryProjectionsRequest"},{"type":"httpTrigger","methods":["get"],"authLevel":"function","name":"req","functionName":"GetLeagueSummaryQueryValidation"},{"type":"activityTrigger","name":"queryRequest","functionName":"GetLeagueSummaryValidateActivity"},{"type":"httpTrigger","methods":["get"],"authLevel":"function","name":"req","functionName":"GetQueryProjectionsStatusProjection"},{"type":"activityTrigger","name":"context","functionName":"GetQueryProjectionsStatusProjectionActivity"},{"type":"httpTrigger","methods":["get"],"authLevel":"function","name":"req","functionName":"GetQueryStatusInformationProjection"},{"type":"activityTrigger","name":"context","functionName":"GetQueryStatusInformationProjectionActivity"},{"type":"activityTrigger","name":"context","functionName":"LogQueryProjectionInFlightActivity"},{"type":"activityTrigger","name":"context","functionName":"LogQueryProjectionResultActivity"},{"type":"eventGridTrigger","name":"eventGridEvent","functionName":"OnCreateLeagueCommand"},{"type":"orchestrationTrigger","name":"context","functionName":"OnCreateLeagueCommandHandlerOrchestrator"},{"type":"eventGridTrigger","name":"eventGridEvent","functionName":"OnGetLeagueSummaryQueryHandler"},{"type":"orchestrationTrigger","name":"context","functionName":"OnGetLeagueSummaryQueryHandlerOrchestrator"},{"type":"eventGridTrigger","name":"eventGridEvent","functionName":"OnSetLeagueEmailAddressCommandHandler"},{"type":"activityTrigger","name":"context","functionName":"QueryLogOutputTargetActivity"},{"type":"orchestrationTrigger","name":"context","functionName":"QueryOutputProcessorOrchestrator"},{"type":"activityTrigger","name":"context","functionName":"QueryOutputToWebhookActivity"},{"type":"httpTrigger","methods":["get"],"authLevel":"function","name":"req","functionName":"QueryProjectionProcessor"},{"type":"orchestrationTrigger","name":"context","functionName":"QueryProjectionProcessorOrchestrator"},{"type":"httpTrigger","methods":["get"],"authLevel":"function","name":"req","functionName":"RunLeagueSummaryInformationProjection"},{"type":"activityTrigger","name":"context","functionName":"RunLeagueSummaryInformationProjectionActivity"},{"type":"httpTrigger","methods":["get"],"authLevel":"function","name":"req","functionName":"RunProjection"},{"type":"activityTrigger","name":"context","functionName":"RunProjectionActivity"},{"type":"httpTrigger","methods":["post"],"authLevel":"function","name":"req","functionName":"SetLeagueEmailAddressCommandHandler"},{"type":"activityTrigger","name":"context","functionName":"SetLeagueEmailAddressCommandHandlerActivity"},{"type":"orchestrationTrigger","name":"context","functionName":"SetLeagueEmailAddressCommandHandlerOrchestrator"},{"type":"activityTrigger","name":"context","functionName":"SetLeagueEmailAddressCommandLogParametersActivity"},{"type":"httpTrigger","methods":["post"],"authLevel":"function","name":"req","functionName":"SetLeagueEmailAddressCommandValidation"},{"type":"activityTrigger","name":"setLeagueEmailAddressCommandContect","functionName":"SetLeagueEmailAddressCommandValidationActivity"}] ``

``` Cannot bind parameter 'esTest' to type EventStream. Make sure the parameter Type is supported by the binding. If you're using binding extensions (e.g. Azure Storage, ServiceBus, Timers, etc.) make...

In the `Common `library we need a way of automatically wiring up the domain model(s) - the event definitions, entity types, projections, commands, queries and classifiers - from the **dlls**...

enhancement

If projection and classifier requests are "enqueued" it would be possible for the receiving end to prevent running the same projection/classifier twice by basically tagging any subsequent requests on as...

Going to have to do something about the discovery part - how does each domain advertise its commands and queries catalogue to others? > Have you thought about returning hypertext...