63
votes
37answers
3k views
Why do we need entity objects?
Ok, I realize I might be downvoted into oblivion for this question, especially given my stance on the matter, but I really need to see some honest, thoughtful debate on the merits of the currently …
32
votes
18answers
9k views
Good PHP ORM Library?
Does anyone know of a good object-relational-mapping library for PHP? I know of PDO/ADO, but they seem to only provide abstraction of differences between database vendors not an actual mapping between …
31
votes
17answers
6k views
Subsonic Vs NHibernate
What is the concensus on when to use one of these tools adversed to the other? I find Subsonic very useful in terms of getting things done quickly, but on large projects it tends not to scale, and its …
30
votes
23answers
3k views
Which ORM for .net would you recommend?
I haven't worked on a .net project for a while (more than a year). Before I've never used an ORM for a .net app. What are some of your takes on this? Does using one make sense? Which ones should I …
27
votes
4answers
1k views
What’s the best strategy for unit-testing database-driven applications?
I work with a lot of web applications that are driven by databases of varying complexity on the backend. Typically, there's an ORM layer separate from the business and presentation logic. This makes …
24
votes
7answers
854 views
Life without JOINs… understanding, and common practices
Lots of "BAW"s (big ass-websites) are using data storage and retrieval techniques that rely on huge tables with indexes, and using queries that won't/can't use JOINs in their queries (BigTable, HQL, …
22
votes
9answers
5k views
NHibernate vs LINQ to SQL
As someone who hasn't used either technology on real-world projects I wonder if anyone knows how these two complement each other and how much their functionalities overlap?
18
votes
8answers
5k views
What are some good Python ORM solutions?
I'm evaluating and looking at using CherryPy for a project that's basically a javascript front-end from the client-side (browser) that talks to a Python web service on the back-end. So, I really need …
17
votes
12answers
2k views
What is the best way to improve performance of NHibernate?
I have an application that uses NHibernate as its ORM and sometimes it experiences performance issues due to how the data is being accessed by it. What kind of things can be done to improve the …
16
votes
14answers
2k views
Are there good reasons not to use an ORM?
During my apprenticeship, I have used NHibernate for some smaller projects which I mostly coded and designed on my own. Now, before starting some bigger project, the discussion arose how to design …
15
votes
9answers
2k views
Using an ORM or plain SQL?
For some of the apps I've developed (then proceeded to forget about), I've been writing plain SQL, primarily for MySQL. Though I have used ORMs in python like SQLAlchemy, I didn't stick with them for …
15
votes
11answers
910 views
Why have object oriented databases not been succesful (yet) ?
That's the question. Give only one reason you think why have OODB failed or why many systems nowadays still use relational databases.
14
votes
11answers
493 views
ORM/Persistence layer Advice
Hi all
I'm starting a new project and I'm looking around for either a very good ORM or for a non-SQL-based persistence layer.
For this project, I really don't care on how the data is persisted, as …
12
votes
13answers
735 views
Weaknesses of Hibernate
I would like to know which are the weak points of Hibernate 3. This is not pretended to be a thread against Hibernate. I think it will be a very useful knowledge for decide if Hibernate is the best …
12
votes
12answers
1k views
Why is ORM considered good but “select *” considered bad?
Doesn't an ORM usually involve doing something like a select *?
If I have a table, MyThing, with column A, B, C, D, etc, then there typically would be an object, MyThing with properties A, B, C, D. …
