Puede asignar la entidad directamente a la vista usando TableAttribute (anotaciones de datos) o ToTable en sus asignaciones fluidas...
Por ejemplo, usando anotaciones de datos:
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
{
...
}
}