码迷,mamicode.com
首页 > 数据库 > 详细

core版本使用ef连接数据库(一)

时间:2019-12-16 17:43:53      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:port   void   lan   epp   persist   get   adb   art   tab   

参考

参考代码

sqlserver数据库:①Nuget: Microsoft.EntityFrameworkCore.SqlServer

ORACLE数据库:①Nuget: Oracle.EntityFrameworkCore 

以oracle为列:

新建DataDBContext连接类

using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace WebApplication2
{
    public class DataDBContext : DbContext
    {      
        protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
        {
            optionsBuilder.UseOracle(@"Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.10.113)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl)));Persist Security Info=True;User ID=zhzepp;Password=citms", b => b.UseOracleSQLCompatibility("11"));
        }
 
        public DbSet<ASSETSEntity> OrderInfos { get; set; }//实体

       static public void test()
        {
            using (var db = new DataDBContext())
            {
                var count = db.OrderInfos.Where(x => x.ASSETSID != null).ToList();

            }
        }
    }
}

实体类

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Threading.Tasks;

namespace WebApplication2
{
    [Table("ASSETS")]
    public class ASSETSEntity 
    {
        /// <summary>
        /// 主键
        /// </summary>
        [Key]
        public string ASSETSID { get; set; }
        /// <summary>
        /// TAGS
        /// </summary>
        [Column("TAGS"), MaxLength(2000)]
        public string TAGS { get; set; }
    }
}

在Startup.cs里面

技术图片

 

core版本使用ef连接数据库(一)

标签:port   void   lan   epp   persist   get   adb   art   tab   

原文地址:https://www.cnblogs.com/macT/p/12050072.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!