次のクラスがあります。
public partial class Application
{
public Application()
{
this.TestAccounts = new List<TestAccount>();
}
public int ApplicationId { get; set; }
public string Name { get; set; }
public virtual ICollection<TestAccount> TestAccounts { get; set; }
}
public partial class TestAccount
{
public TestAccount()
{
this.Subjects = new List<Subject>();
}
public int TestAccountId { get; set; }
public string Name { get; set; }
public int ApplicationId { get; set; }
}
私のコードではIQueryable<Application>
、1 つのレコードを返す次のコードがあります。
var applications = DbSet.Where(a => a.ApplicationId == applicationId)
これを変更して返すにはどうすればよいですか:ICollection<TestAccount>