I am opening a discussion here on the topic, I could not find an answer enough to be called the final answer: MySQL and .NET.
Although I know that there are many ways to make this connection, I am trying to find a list of the pros and cons of each approach.
I have been using ADO.NET with MySQL NETconnector from the very beginning of my project, and everything was fine when the database was new and did not have many records. But now I am faced with a situation where the number of records is growing exponentially, and I have found another way to query the database, which is an ODBC connector. Using the ADO.NET + NETConnector solution, I had O / RM and I didnโt have to write my queries, while ODBC makes my code look awful now (since I havenโt completely switched to ODBC, I have Linq queries and plain SQL requests inside my code).
Is there any solution (free or not) where I can have as O / RM without having to write SQL queries and ODBC speed?
source share