File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -505,7 +505,7 @@ warning 6002: The table/view 'Create.CSP.Reporting.dbo.Log' does not have a prim
505
505
</Key >
506
506
<Property Name =" Id" Type =" Guid" Nullable =" false" />
507
507
<Property Name =" StartDateTime" Type =" DateTime" Nullable =" false" Precision =" 3" />
508
- <Property Name =" EndDateTime" Type =" DateTime" Precision =" 3" />
508
+ <Property Name =" EndDateTime" Type =" DateTime" Precision =" 3" Nullable = " true " />
509
509
<Property Name =" Status" Type =" String" MaxLength =" 255" FixedLength =" false" Unicode =" true" Nullable =" false" />
510
510
<NavigationProperty Name =" ActivationReports" Relationship =" Self.FK_ActivationReport_CorrelationIds" FromRole =" CorrelationIds" ToRole =" ActivationReport" />
511
511
<NavigationProperty Name =" Customers_History" Relationship =" Self.FK_Customers_History_CorrelationIds" FromRole =" CorrelationIds" ToRole =" Customers_History" />
Original file line number Diff line number Diff line change @@ -34,7 +34,8 @@ public Task<CorrelationId> AddNewRunAsync()
34
34
{
35
35
Id = Guid . NewGuid ( ) ,
36
36
StartDateTime = DateTime . UtcNow ,
37
- Status = "RUNNING"
37
+ Status = "RUNNING" ,
38
+ EndDateTime = null
38
39
} ) ;
39
40
}
40
41
You can’t perform that action at this time.
0 commit comments