0

我是 asp.net MVC 的新手。我想从数据库视图中检索数据并将其映射到我的模型。模型类具有与视图相同的一组属性。有没有一种方法可以让我从数据库视图而不是表中获取数据(由于代码优先,表会自动创建)。

我的模型如下所示:

public class Product{

    public long ID { get; set; }

    [Display(Name = "Product Code")]
    public int ProductCode { get; set; }

    [Display(Name = "Product Title")]
    public string ProductTitle { get; set; }
};

public class ProductDBContext : DbContext
{
    public DbSet<Product> Products 
    { 
        get; set; }
}
4

2 回答 2

0

你在用 dbml 吗?将你的 dbo.View 拖到 dbml 中,像使用表一样使用,但不能添加和更新。

public class ProductDBContext : DbContext
{
    public ProductDBContext ()
        : base("MyConnection") //web.config
    {
    }

    public DbSet<Product> Products { get; set; }
}

// Your View:
// CREATE VIEW dbo.Product
// AS
// SELECT dbo.ProductProfile.ID, dbo.ProductProfile.ProductCode, dbo.ProductTitle.ProfileID, dbo.ProductTitle.ProductTitle 
// FROM   dbo.ProductProfile INNER JOIN
//          dbo.ProductTitle ON dbo.ProductProfile.ID = dbo.ProductTitle.ProfileID
//
[Table("dbo.Product")]  
public class Product
{
    [Key]
    public long ID { get; set; }

    [Display(Name = "Product Code")]
    public int ProductCode { get; set; }

    [Display(Name = "Product Title")]
    public string ProductTitle { get; set; }
}
于 2013-01-29T13:06:49.763 回答
0

您当然可以使用 Code First 映射到视图,只需告诉 Code First 它是一个表,并且它将对视图使用与表相同的 SQL。显然,如果您尝试更新该实体,如果视图不可更新,您将收到异常。

希望这可以帮助。

于 2013-01-29T12:57:14.833 回答