0

我有这个方法:

/// <summary>
/// Gets the query filter.
/// </summary>
/// <param name="queryText">The query text.</param>
/// <returns>The query filter predicate.</returns>
private Task<Predicate<int>> GetQueryFilter(string queryText)
{
    // Return the query filter predicate
    return new Predicate<int>(async(id) =>
    {
        // Get the employee
        StructuredEmployee employee = await LoadEmployee(id);
        // If employee not found - return false
        if (employee == null)
            return false;
        // Else if employee is found
        else
            // Check subject and body
            return (!string.IsNullOrWhiteSpace(employee.FirstName)) && employee.FirstName.Contains(queryText)
                || (!string.IsNullOrWhiteSpace(employee.MiddleName)) && employee.MiddleName.Contains(queryText)
                || (!string.IsNullOrWhiteSpace(employee.LastName)) && employee.LastName.Contains(queryText);
    });
}

我希望这个方法异步返回,即Task<Predicate<int>>. 我该怎么做呢?目前我在async(id).

4

1 回答 1

1

你问的没有多大意义。

Task<Predicate<int>>是一个返回谓词的异步方法。

您要做的是编写一个异步操作的谓词。换句话说,Func<int, Task<bool>>将是一个异步谓词。

private Func<int, Task<bool>> GetQueryFilter(string queryText)
{
  return new Func<int, Task<bool>>(async (id) =>
  {
    ...
  };
}

但是对于调用它的任何代码,实际的异步谓词可能都无法正常工作。您必须确定处理该问题的最佳方法是什么。

于 2013-05-08T20:53:01.983 回答