Możesz po prostu zmapować Entity bezpośrednio do widoku za pomocą TableAttribute (adnotacji danych) lub ToTable w swoich Fluent Mappings...
Na przykład przy użyciu adnotacji do danych:
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
{
...
}
}