Returns the object with primary key id or null if id does not exist.
id
Future<TDao?> findById(TPrimaryKey id) async { return await transaction((context) async { return await context.queryId(bean, id); }); }