Можете просто да картографирате Entity директно към изгледа с помощта на TableAttribute (анотации на данни) или ToTable във вашите Fluent Mappings...
Например използване на пояснения за данни:
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
{
...
}
}