I'm trying to port https://github.com/DbLinq/dblinq2007 package to .NET 5 .
Using this instead of original throws errors in \DbLinq\DbLinq\Data\Linq\Mapping\XmlMappingSource.cs
- It looks like GetFunctions() is not implemented, Cannot override two methods:
IEnumerable<System.Data.Linq.Mapping.MetaFunction> GetFunctions()
IEnumerable GetFunctions()
-
Line
class XmlMetaAccessor : System.Data.Linq.Mapping.MetaAccessor
throws error in VS2019
Error CS0534 'XmlMappingSource.XmlMetaAccessor' does not implement inherited abstract member 'MetaAccessor.Target.get' DbLinq ... \DbLinq\DbLinq\Data\Linq\Mapping\XmlMappingSource.cs 1109
Adding
internal override MemberInfo Target => throw new NotImplementedException();
to this class as VS2019 suggests does not remove the error
I'm trying to port https://github.com/DbLinq/dblinq2007 package to .NET 5 .
Using this instead of original throws errors in \DbLinq\DbLinq\Data\Linq\Mapping\XmlMappingSource.cs
IEnumerable<System.Data.Linq.Mapping.MetaFunction> GetFunctions()
IEnumerable GetFunctions()
Line
throws error in VS2019
Error CS0534 'XmlMappingSource.XmlMetaAccessor' does not implement inherited abstract member 'MetaAccessor.Target.get' DbLinq ... \DbLinq\DbLinq\Data\Linq\Mapping\XmlMappingSource.cs 1109
Adding
internal override MemberInfo Target => throw new NotImplementedException();
to this class as VS2019 suggests does not remove the error