Entitu můžete jednoduše namapovat přímo na zobrazení pomocí TableAttribute (anotace dat) nebo ToTable ve vašich Fluent Mappings...
Například pomocí datových poznámek:
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
{
...
}
}