Puoi semplicemente mappare l'entità direttamente alla vista utilizzando TableAttribute (annotazioni di dati) o ToTable nelle tue mappature fluide...
Ad esempio, utilizzando le annotazioni sui dati:
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
{
...
}
}