How do I delete an object without fetching it from the db first?
In another ORM, I can do this:
session.Delete(1); // 1 = PK
You could do this
User user = new User(); user.Id = 1; session.Delete(user);