我在尝试检索单个记录时尝试查询我的 Azure DocumentDb 存储帐户时遇到问题。这是我的 WebAPI 代码:
// Controller...
public AccountController : ApiController {
// other actions...
[HttpGet]
[Route("Profile")]
public HttpResponseMessage Profile()
{
var userId = User.Identity.GetUserId();
var rep = new DocumentRepository<UserDetail>();
var profile = rep.FindById(userId);
if (profile == null)
return Request.CreateErrorResponse(HttpStatusCode.NotFound, "Profile not found");
return Request.CreateResponse(HttpStatusCode.OK, profile);
}
}
// Repository
public class DocumentRepository<TEntity> : IDocumentRepository<TEntity> where TEntity : IIdentifiableEntity
{
private static DocumentClient _client;
private static string _databaseName;
private static string _documentsLink;
private static string _selfLink;
public DocumentRepository()
{
_client = new DocumentClient(new Uri(ConfigurationManager.AppSettings["DocumentDbEndpointUrl"]), ConfigurationManager.AppSettings["DocumentDbAuthKey"]);
_databaseName = ConfigurationManager.AppSettings["DocumentDbDatabaseName"];
var _database = ReadOrCreateDatabase();
var collection = InitialiseCollection(_database.SelfLink, EntityName);
_documentsLink = collection.DocumentsLink;
_selfLink = collection.SelfLink;
}
// other methods...
public TEntity FindById(string id)
{
return _client.CreateDocumentQuery<TEntity>(_documentsLink).SingleOrDefault(u => u.Id.ToString() == id);
}
}
正是这种FindById
方法导致了以下问题:
Microsoft.Azure.Documents.Client.dll 中出现“Microsoft.Azure.Documents.Linq.DocumentQueryException”类型的异常,但未在用户代码中处理
附加信息:查询表达式无效,表达式返回类型
Foo.Models.DocumentDbEntities.UserDetail 不受支持。查询必须评估为 IEnumerable。
我不明白这个错误是什么意思,或者我如何修复它。我不希望返回一个IEnumerable
或任何后代类,因为此方法将返回一个0
或1
记录。如果我删除该SingleOrDefault
子句并将返回类型更改为 an ,它会起作用IQueryable
,但这不是我想要的。