Bạn chỉ có thể ánh xạ Đối tượng trực tiếp đến dạng xem bằng TableAttribute (thông báo dữ liệu) hoặc ToTable trong Bản đồ thông thạo của bạn ...
Ví dụ:sử dụng thông báo dữ liệu:
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
{
...
}
}