I'm trying to test out the new F# Type Providers, but I can't get it to work nicely with our DB2 database. This is my builder:
SqlEntityConnection<ConnectionString="Server=<host>:<port>;Database=<db>;UID=<uid>;PWD=<pwd>", Provider="IBM.Data.DB2">
All the appropriate libraries seem to be installed and configured, but I consistently get the error
Error reading schema. error 7001: Failed to find or load the registered .Net Framework Data Provider.
I have no idea what to do here. I'm referencing IBM.Data.DB2, IBM.Data.DB2.Entity, and IBM.Data.Informix in my project. I tried the advice in this question to fix up my machine.config and I applied it to app.config as well. Nothing seems to work. What am I missing here?