如何从datacontext创建表到现有数据库

如何从datacontext创建表到现有数据库

本文介绍了如何从datacontext创建表到现有数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个DataContext,我有一个现有数据库的名称

我想创建DataContext包含在数据库中的所有表



我尝试了什么:



我已经从DataContext创建了一个新数据库,但我想对现有数据库执行此操作/>


 DataContext db =  new  DataContext(  Data Source = localhost \\sqlexpress; Initial Catalog = db; Integrated Security = True); 
db.CreateDatabase();
解决方案


I have a DataContext and I have a name of existing database
I want to create all tables that DataContext contains to the database

What I have tried:

I have created a new database from the DataContext but I want to do that to an exist database

 DataContext db =new DataContext("Data Source=localhost\\sqlexpress;Initial Catalog=db;Integrated Security=True");
db.CreateDatabase();
解决方案



这篇关于如何从datacontext创建表到现有数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 22:29