Exists
PetaPoco を使用すると、API から以下に示すようにメソッド オーバーロードを使用できるはずです。
/// <summary>
/// Checks for the existance of a row matching the specified condition
/// </summary>
/// <typeparam name="T">The Type representing the table being queried</typeparam>
/// <param name="sqlCondition">The SQL expression to be tested for (ie: the WHERE expression)</param>
/// <param name="args">Arguments to any embedded parameters in the SQL statement</param>
/// <returns>True if a record matching the condition is found.</returns>
public bool Exists<T>(string sqlCondition, params object[] args)
したがって、次のように呼び出すことができるはずです。
var exists = myDB.Exists<myTable>("field = 'value'");