
Originally Posted by
frantaylor
"Entity frameworks" are nothing more than pure bloat.
If you need an "entity framework" it's a symptom: you are not doing it right.
Use a database with semantics that match your application, and you don't need no steenkin "entity framework".
How nice of Microsoft to encourage bad software design.
Leave it to Microsoft to come up with designs like this:
- developer wants to store key-value pairs
- "entity framework" creates SQL queries to model "key-value" store
- SQL database parses SQL queries and performs "key-value" operations on its underlying database.
So here we have creation of SQL code and the subsequent parsing of this SQL code for NO REASON WHATSOEVER.
Yee-haw!