如何查詢基於ASP.NET的服務器中的SingleResult對象?請幫助下面的代碼。如何查詢基於ASP.NET的服務器中的SingleResult對象?
public class UserController : TableController<User>
{
...
public Task DeleteUser(string id)
{
SingleResult<User> user = Lookup(id);
// I can drill down into user via the debugger and see the data
// I'm looking for. But I don't know how to translate what I see
// in the debugger to a .Net call.
// This is what I see in the debugger:
// new System.Linq.SystemCore_EnumerableDebugView
// <AlertMeService.DataObjects.User>(result.Queryable).Items[0].GroupNm
// which equals "fooGrp"
// The below call doesn't work
// string GroupNm = user.GroupNm;
// I need GroupNm from the object to send a group notification
PostNotification(user.GroupNm, ...);
return DeleteAsync(id);
}
...
任何幫助,非常感謝。
我只想從查找返回的SingleResult對象中獲取user.GroupNm。我不知道如何對它進行類型化。 – Mike
你是否遵循了以下建議來檢查這個問題,有沒有更新? –
布魯斯,戴的下面的建議工作。感謝您的跟蹤。 -Mike – Mike