プロファイルにブログIDを持つユーザーのユーザー名を取得しようとしています。
このコードはすべてのブログを返し、それをリストに入れます。
Dim blogs = db.Blogs.Include(Function(b) b.Company)
Return View(blogs.ToList())
ブログが属するユーザー名をリストに含めたいのですが。そのデータはプロファイルエンティティ(「BlogId」と呼ばれるフィールド)に保持されます。
これはプロファイルエンティティです。
Imports System.Data.Entity
Imports System.ComponentModel.DataAnnotations
Public Class UserProfile
Public Property UserProfileId() As Integer
Public Property UserId() As Guid
Public Property CompanyId() As Integer
Public Property BlogId() As Integer
Public Property IsCompanyOwner As Boolean
Public Property IsBlogOwner As Boolean
End Class
Public Class UserProfileDbContext
Inherits DbContext
Public Property UserProfiles As DbSet(Of UserProfile)
End Class
ユーザー名をToList()に取得して、ビューに表示するにはどうすればよいですか?
ありがとう。