File tree Expand file tree Collapse file tree
ReactorData/Implementation Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -93,13 +93,12 @@ public async Task BasicOperationsOnEntityWithRelationshipUsingEfCoreStorage()
9393 _container . GetEntityStatus ( movie ) . Should ( ) . Be ( EntityStatus . Detached ) ;
9494
9595 _container . Add ( movie ) ;
96+ _container . Add ( director ) ;
9697
9798 await _container . Flush ( ) ;
9899
99100 _container . GetEntityStatus ( movie ) . Should ( ) . Be ( EntityStatus . Added ) ;
100101
101- //_container.Set<Movie>().Single().Should().BeSameAs(movie);
102-
103102 _container . Save ( ) ;
104103
105104 await _container . Flush ( ) ;
Original file line number Diff line number Diff line change @@ -28,8 +28,6 @@ partial class ModelContext : IModelContext
2828 private readonly ConcurrentDictionary < Type , List < WeakReference < IObservableQuery > > > _queries = [ ] ;
2929
3030 private readonly SemaphoreSlim _notificationSemaphore = new ( 1 ) ;
31-
32- //private readonly ModelContext? _owner;
3331
3432 private readonly ILogger < ModelContext > ? _logger ;
3533
You can’t perform that action at this time.
0 commit comments