We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The MatchOn method (https://github.com/corstian/Boerman.GraphQL.Contrib/blob/master/Boerman.GraphQL.Contrib/DataLoaders/GenericEntityFrameworkDataLoader.cs) does not produce queries which work properly with EF Core 3.0 because it uses the ICollection interface.
MatchOn
ICollection
Change this to IList to make it work properly again.
IList
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
MatchOn
method (https://github.com/corstian/Boerman.GraphQL.Contrib/blob/master/Boerman.GraphQL.Contrib/DataLoaders/GenericEntityFrameworkDataLoader.cs) does not produce queries which work properly with EF Core 3.0 because it uses theICollection
interface.Change this to
IList
to make it work properly again.The text was updated successfully, but these errors were encountered: