Du kan bara mappa enheten direkt till vyn med hjälp av TableAttribute (datakommentarer) eller ToTable i dina flytande mappningar...
Till exempel att använda datakommentarer:
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
{
...
}
}