We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a9ecfc commit 040d11eCopy full SHA for 040d11e
src/MicroBatchFramework/BatchBase.cs
@@ -2,6 +2,10 @@
2
{
3
public abstract class BatchBase
4
5
- public BatchContext? Context { get; set; }
+ // Context will be set non-null value by BatchEngine,
6
+ // but it might be null because it has public setter.
7
+ #nullable disable warnings
8
+ public BatchContext Context { get; set; }
9
+ #nullable restore warnings
10
}
11
0 commit comments