- get() throws an ObjectNotFoundException if no data is found, while load() returns a proxy object without hitting the database
- When accessing properties of the proxy object returned by load(), it will trigger a SELECT to the database and throw an ObjectNotFoundException if no data exists
- get() immediately hits the database to check for data, while load() defers the database hit until property access if a proxy is returned
- It is generally better to use get() when you expect data to exist, and check for its return value being null, rather than using load()