3

我正在尝试使用 Oracle 和 Petapoco 来获得一行的存在。到目前为止,我有以下代码。

var sql =new Sql("select COUNT(*) FROM myTable where field = 'value'");
var exists = myDB.Query<int>(sql) > 0;

当我在数据库和我的应用程序之间拆分工作时,这感觉有点脏。有没有办法我可以做类似以下的事情?

var exists = myDB.Query<bool>(someNewSqlThatReturnsBool);
4

1 回答 1

3

使用 PetaPoco,您应该能够使用ExistsAPI 中的方法重载,如下所示。

/// <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'");
于 2014-04-10T19:47:23.753 回答