MySql data source and MySQL project template not appearing in Visual Studio 2013 community edition -
i wanted use mysql visual studio 2013 community edition
for -
i have installed visual studio 2013 community edition can used host connecting mysql per this blog.
i (re-) installed mysql visual studio plugin
- i (re-) installed .net connector mysql
- i (re-) started machine twice.
but still cannot see mysql data source , data provider in choose data source dialogue of visual studio 2013.
is there manual configuration required?
update: solution accepted helped me make mysql project templates appear in visual studio 2013 community ide.
i tried following similar (not-duplicate) questions:
go folder "c:\program files (x86)\microsoft visual studio 12.0\common7\ide\privateassemblies" , check versions of following files,
- mysql.data.dll
- mysql.data.entity.ef6.dll
- mysql.web.dll
compare them files found in "c:\program files (x86)\mysql\mysql connector net 6.9.6\assemblies\v4.5", if not same, try , replace them files found here.
some people have had better luck using older versions of these assemblies, try using 6.9.5 assemblies.
alternatively add referencees these files directly project.
ensure have following in app.config;
<entityframework> <defaultconnectionfactory type="mysql.data.entity.mysqlconnectionfactory, mysql.data.entity.ef6" /> <providers> <provider invariantname="mysql.data.mysqlclient" type="mysql.data.mysqlclient.mysqlproviderservices, mysql.data.entity.ef6" /> </providers> </entityframework>
Comments
Post a Comment