Du kan blot kortlægge enheden direkte til visningen ved hjælp af TableAttribute (dataannoteringer) eller ToTable i dine Flydende Mappings...
For eksempel ved at bruge dataannotationer:
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
{
...
}
}