“The given key was not present in the dictionary”, create data model mysql visual studio 2017

Clash Royale CLAN TAG #URR8PPP “The given key was not present in the dictionary”, create data model mysql visual studio 2017 I have hours looking for how to solve the error and I can not find it, and uninstall and install mysql several times and I can not solve it, thanks for your help visual studio 2017 comunity mysql 8.0.12 (installed with mysql installer) conector net 8.0.12 (installed with mysql installer) mysql.data.entity 6.10.7 (installed with nuget) mysql.data 6.9.12 (installed with nuget) NET framework 4.5 the test conection is success I only have one table, is this CREATE DATABASE IF NOT EXISTS mydb DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; USE mydb; CREATE TABLE negocios ( idNegocio int(11) NOT NULL, nombre varchar(45) DEFAULT NULL, calle varchar(45) DEFAULT NULL, activo int(11) DEFAULT NULL, colonia varchar(45) DEFAULT NULL, municipio varchar(45) DEFAULT NULL, numero int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE DATABASE IF NOT EXISTS mydb ...