I'm opening a discussion here on a subject I couldn't find any answer good enough to be called a final answer: MySQL and .NET.

While I know there is a lot of ways to make this connection, I'm trying to find a list of pros and cons of each approach.

I've been using ADO.NET with the MySQL NETconnector since the beggining of my project, and everything was ok when the database was new and didn't have many records. But now I'm facing a situation where the number of records grows exponentially, and I found other way of querying against the database, which is the ODBC connector. Using the ADO.NET + NETConnector solution I had my O/RM and didn't have to write my queries, while ODBC makes my code look awful now (since I didn't switch completely to ODBC, I have Linq queries and plain SQL queries inside my code).

Is there any solution (free or not) where I can have both an O/RM without the need of writing SQL queries myself and the speed of ODBC?

link|improve this question

69% accept rate
feedback

2 Answers

What you should be doing is using the MySQL ADO.NET Connector and storing your queries in the database in the form of stored procedures. Version 6.0 of the MySQL connector also supports The Entity Framework. If you are interested in using the Entity Framework, check out this link which describes how to set that up.

link|improve this answer
@Bruno - This doesn't sound like a problem with the ADO.NET. It sounds more like a database issue. Do you have your tables properly indexed? Try running the same query from the MySQL front end directly and see if speed is still an issue – icemanind Jul 20 '11 at 22:34
This is exactly what I'm doing, and it was working fine, but as my DB grows, it gets slower and slower (which is somewhat obvious), while the ODBC speed doesn't drop down at this big rate. – Bruno Jul 20 '11 at 22:41
It doesn't still an issue, that's the problem. – Bruno Jul 20 '11 at 22:42
@Bruno Just to clarify you say as the database gets larger your queries take longer WITH the ORM solution? First off you need to profile the code to have any idea why it is happening. If I had to start spouting off random reasons it could become slower I'd say it was a graphing problem. Your ORM solution could be trying to build a full graph of all the objects each query, and would become especially slow if there were circular dependencies and no lazy loading. – Andrew Finnell Jul 22 '11 at 11:44
feedback

NHibernate

Update to Comments

NHibernate Proxy Generators It is a byte code generator for your object model that allows NHibernate to perform lazy loading and other operations. The link provided explains the benefits.

Castle and LinFu are two different implementations of those Proxy Generators.

While NHibernate does not have coincide documentation all the information on how to use it, is on the internet. This could be a barrier to usability for some people though. I understand more about NHibernate because of my past experience with Hibernate.

link|improve this answer
On phone will fix answer shortly – Andrew Finnell Jul 21 '11 at 1:23
1  
The thing with this nHibernate is that it just throws a bunch of names at my face and says "now, find out". Even the tutorial on their page is regarded as poorly written and out of date, so that's a problem (a big one IMHO). Example: should I or should I not use Castle? Will I have to create the xmls myself, or it is the function of Castle? I think you can see the problem. – Bruno Jul 21 '11 at 19:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.