Object-relational mapping is a programming technique that allows applications to work with the data as objects, but store the data in a database as groups of simpler values.
11
votes
4answers
586 views
When using an ORM, what are some things to watch out for in your database design
What are some database design gotchas to watch out for when you know the database will be accessed using a ORM?
As an example, I'll note the 2100 parameter limit on SqlServer's RPC call. This is a ...