feat: implement outbox pattern #44
Annotations
11 warnings
build
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-dotnet@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
build:
GenericRepository/Domain/Abstractions/ValueObject.cs#L14
Nullability of type of parameter 'obj' doesn't match overridden member (possibly because of nullability attributes).
|
build:
GenericRepository/Domain/OutBoxMessage/Entities/OutBoxMessage.cs#L23
'OutBoxMessage.Id' hides inherited member 'Entity.Id'. Use the new keyword if hiding was intended.
|
build:
GenericRepository/Infrastructure/Repository/GenericRepository/Query/QueryGenericRepository.Async.cs#L20
Nullability of reference types in type of parameter 'query' of 'Task<long> QueryGenericRepository<T>.GetCountAsync(Expression<Func<T, bool>> query = null)' doesn't match implicitly implemented member 'Task<long> IQueryGenericRepository<T>.GetCountAsync(Expression<Func<T, bool>>? query = null)' (possibly because of nullability attributes).
|
build:
GenericRepository/Infrastructure/Repository/GenericRepository/Query/QueryGenericRepository.Async.cs#L20
Cannot convert null literal to non-nullable reference type.
|
build:
GenericRepository/Infrastructure/Repository/UnitOfWork/UnitOfWork.cs#L15
Non-nullable field '_outboxMessages' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the field as nullable.
|
build:
GenericRepository/Infrastructure/Context/CommandContext.cs#L12
Nullability of reference types in type of parameter 'sender' of 'void CommandContext.TrackChanges(object sender, EntityEntryEventArgs e)' doesn't match the target delegate 'EventHandler<EntityStateChangedEventArgs>' (possibly because of nullability attributes).
|
build:
GenericRepository/Infrastructure/Context/CommandContext.cs#L13
Nullability of reference types in type of parameter 'sender' of 'void CommandContext.TrackChanges(object sender, EntityEntryEventArgs e)' doesn't match the target delegate 'EventHandler<EntityTrackedEventArgs>' (possibly because of nullability attributes).
|
build:
GenericRepository/Domain/ChangeHistory/Entities/ChangeHistoryEntity.cs#L8
Non-nullable property 'OldValue' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.
|
build:
GenericRepository/Domain/ChangeHistory/Entities/ChangeHistoryEntity.cs#L10
Non-nullable property 'NewValue' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.
|
build:
GenericRepository/Domain/ChangeHistory/Entities/ChangeHistoryEntity.cs#L12
Non-nullable property 'RelatedEntityId' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.
|