EntityFramework-Reverse-POCO-Code-First-Generator
EntityFramework-Reverse-POCO-Code-First-Generator copied to clipboard
.NET6 FakeDbSet<T>
When Targetting .net 6.0 and using ef6,
Severity Code Description Project File Line Suppression State Error CS0534 'FakeDbSet<TEntity>' does not implement inherited abstract member 'DbSet<TEntity>.EntityType.get' Tester.Integration.EFCore5 (net6.0) C:<devPath>\EntityFramework-Reverse-POCO-Code-First-Generator\Tester.Integration.EfCore5\Northwind.cs 939 Active
Should add this property (and proper implementation)
#if NET6_0
public override IEntityType EntityType { get; }
#endif