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
Thanks for the tutorial first of all!
I'm following through with the tutorial and at this line: https://github.com/vacationlabs/haskell-webapps/blame/master/doc/docs/opaleye/basic-db-mapping.rst#L108
we have $(makeAdaptorAndInstance "pTenant" ''TenantPoly) however makeAdaptorAndInstance does not appear to be imported.
$(makeAdaptorAndInstance "pTenant" ''TenantPoly)
makeAdaptorAndInstance
Is this from Data.Profunctor.Product.TH?
Data.Profunctor.Product.TH
I'm guessing we also need:
{-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE MultiParamTypeClasses #-}
The text was updated successfully, but these errors were encountered:
hlint starterApp/Main.hs complians about missing of MultiParamTypeClasses
MultiParamTypeClasses
Sorry, something went wrong.
No branches or pull requests
Thanks for the tutorial first of all!
I'm following through with the tutorial and at this line: https://github.com/vacationlabs/haskell-webapps/blame/master/doc/docs/opaleye/basic-db-mapping.rst#L108
we have
$(makeAdaptorAndInstance "pTenant" ''TenantPoly)
howevermakeAdaptorAndInstance
does not appear to be imported.Is this from
Data.Profunctor.Product.TH
?I'm guessing we also need:
The text was updated successfully, but these errors were encountered: