U kunt de entiteit gewoon rechtstreeks aan de weergave toewijzen met behulp van TableAttribute (gegevensaantekeningen) of ToTable in uw Fluent Mappings...
Bijvoorbeeld met behulp van gegevensannotaties:
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
{
...
}
}