csharp 使用Entity Framework将数据添加到表中。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 使用Entity Framework将数据添加到表中。相关的知识,希望对你有一定的参考价值。

using AppModel.DTO;
using AppModel.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;

namespace AppRepository
{
    public class MyRepository : IMyRepository
    {
        private myEntity context; 
 
        public int Add(Data data) 
        {
            using (context = new myEntity()) 
            { 
                DBTable dbTable = new DBTable(); 
                dbTable.MyID = data.MyID;
                dbTable.MyFirstName = data.MyFirstName;
                dbTable.MyLastName = data.MyLastName;
                dbTable.MyDOB = data.MyDOB;
 
                context.DBTable.Add(dbTable); 
                return context.SaveChanges(); 
            }
        }
    }
}

以上是关于csharp 使用Entity Framework将数据添加到表中。的主要内容,如果未能解决你的问题,请参考以下文章

csharp 如何首先使用迁移向Entity Framework 4.3代码中的列添加描述?

csharp LINQ加入Entity Framework.cs

csharp 在Entity Framework中调用用户定义的数据库函数

csharp 虚假实现Entity Framework的DbSet以进行快速单元测试

csharp: NHibernate and Entity Framework (EF) (object-relational mapper)

MVC5 Entity Framework学习之Entity Framework高级功能