While porting an application from SQL 2005 to SQL Server Compact Edition, I found that I need to port this command:
SELECT TOP 1 Id FROM tblJob WHERE Holder_Id I
Looks like it can't be done in compact. You have to read all the jobs, or make a SqlReader, and just read the first one.