Hello guys I have a confusing question! If I'm using WCF to create a web service, then I'm trying to connect my service to a database which is a mysql one!
After I have installed the .NET connector, still I can not refer to the database using
using MySql.Data.MySqlClient;
the client will be adding some sort of ID to the service and I want the WCF app Parse that value and feed it to the database!
I searched on StackOverflow as well and I found these two below to be an approach as well :
using System.Data.Odbc;
using System.Data.SqlClient;
Could this be connecting my service to the database ? Please if you think I have a misunderstanding in the way I want to load the drivers let me know!
THANKS