आप अपने फ़्लुएंट मैपिंग में TableAttribute (डेटा एनोटेशन), या ToTable का उपयोग करके सीधे एंटिटी को दृश्य में मैप कर सकते हैं...
उदाहरण के लिए डेटा एनोटेशन का उपयोग करना:
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
{
...
}
}