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
prior to ver 2 there wasn't a way. After ver 2 you have the ExecuteUpdate() method on IQuery and there is an overloaded method on ISession.Delete() where it accepts a string that defines a deletion query
ExecuteUpdate()
IQuery
ISession.Delete()