TableAttribute (データ注釈) を使用するか、Fluent Mappings で ToTable を使用して、エンティティをビューに直接マップすることができます...
たとえば、データ注釈の使用:
using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; public namespace whatever.mynamespace [Table("dbo.ContactLogSummaries")] //<-- this is your view public class ContactLogSummary { ... } }
プレ>