次の ASP MVC4 コードがあります。
[HttpGet]
public virtual ActionResult GetTestAccounts(int applicationId)
{
var testAccounts =
(
from testAccount in this._testAccountService.GetTestAccounts(3)
select new
{
Id = testAccount.TestAccountId,
Name = testAccount.Name
}
).ToList();
return Json(testAccounts, JsonRequestBehavior.AllowGet);
}
これを Web API で動作するように変換しています。このため、ここのように匿名クラスを返す場合、誰かが私の戻り値の型を教えてもらえますか?