Asp.net将值添加到数据库

时间:2018-01-02 20:10:15

标签: c# asp.net entity-framework

我是asp.net的新手,我从基本的crud操作开始。

我为此创建了带有db名称值(代码,名称,价格,货币)和DBcontext的css类,当我创建控制器时,它不会将值添加到数据库中,但它存储在某个地方。

enter image description here

当我从c#代码中用作普通查询时,它会存储到数据库中。

我的问题是为什么来自(csfile和context)的CRUD操作不在数据库中?

- cs class -

application/json

- 产品背景

public class Productos
{
    [Key]
    public int Codigo { get; set; }
    public string Nombre { get; set; }
    public decimal Precio { get; set; }
    public string Moneda { get; set; }
}

---这是创建的代码---

public class ProductoContext : DbContext
{
    public ProductoContext() : base("database name")
    {
    }

     public DbSet<Productos> Producto { get; set; }

}

----连接字符串------

0 个答案:

没有答案