LINQPad,使用多个datacontexts
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LINQPad,使用多个datacontexts相关的知识,希望对你有一定的参考价值。
我经常比较不同数据库中表格中的数据。这些数据库没有相同的架构。在TSQL中,我可以用DB>user>table
结构(DB1.dbo.Stores
,DB2.dbo.OtherPlaces
)引用它们来提取数据进行比较。我非常喜欢LINQPad的想法,但我似乎无法在同一组语句中轻松地从两个不同的数据上下文中提取数据。
我见过人们建议只是更改连接字符串以将数据从其他源提取到当前架构中,但正如我所提到的,这是不行的。我刚跳过常见问题解答中的一页吗?这对我来说似乎是一个相当常规的程序。
在“简单”的世界中,我希望能够简单地引用LINQPad创建的类型化数据文本。然后我可以简单地说:
DB1DataContext db1 = new DB1DataContext();
DB2DataContext db2 = new DB2DataContext();
从那里开始工作。
更新:现在可以在LINQPad中进行跨数据库SQL Server查询(来自LINQPad v4.31,具有LINQPad Premium许可证)。要使用此功能,请在将数据库从“架构资源管理器”拖动到查询窗口时按住Control键。
也可以查询链接的服务器(通过调用sp_add_linkedserver链接的服务器)。去做这个:
- 添加新的LINQ to SQL连接。
- 选择“指定新数据库”或“现有数据库”,然后选择要查询的主数据库。
- 单击“包括其他数据库”复选框,然后从列表中选择链接的服务器。
请记住,您始终可以自己创建另一个上下文。
public FooEntities GetFooContext()
{
var entityBuilder = new EntityConnectionStringBuilder
{
Provider = "Devart.Data.Oracle",
ProviderConnectionString = "User Id=foo;Password=foo;Data Source=Foo.World;Connect Mode=Default;Direct=false",
Metadata = @"D:\FooModel.csdl|D:\FooModel.ssdl|D:\FooModel.msl"
};
return new FooEntities(entityBuilder.ToString());
}
您可以根据需要实例化多个上下文来分离SQL实例并执行伪交叉数据库连接,复制数据等。注意,跨上下文的连接是在本地执行的,因此您必须调用ToList(),ToArray()等来执行查询在加入之前单独使用各自的数据源。换句话说,如果你“内部”连接DB1.TABLE1中的10行和来自DB2.TABLE2的20行,则在Linq执行连接并返回相关/交叉之前,必须将两个集合(所有30行)拉入本地计算机的内存中。设置(每个例子最多20行)。
//EF6 context not selected in Linqpad Connection dropdown
var remoteContext = new YourContext();
remoteContext.Database.Connection.ConnectionString = "Server=[SERVER];Database="
+ "[DATABASE];Trusted_Connection=false;User ID=[SQLAUTHUSERID];Password="
+ "[SQLAUTHPASSWORD];Encrypt=True;";
remoteContext.Database.Connection.Open();
var DB1 = new Repository(remoteContext);
//EF6 connection to remote database
var remote = DB1.GetAll<Table1>()
.Where(x=>x.Id==123)
//note...depending on the default Linqpad connection you may get
//"EntityWrapperWithoutRelationships" results for
//results that include a complex type. you can use a Select() projection
//to specify only simple type columns
.Select(x=>new { x.Col1, x.Col1, etc... })
.Take(1)
.ToList().Dump(); // you must execute query by calling ToList(), ToArray(),
// etc before joining
//Linq-to-SQL default connection selected in Linqpad Connection dropdown
Table2.Where(x=>x.Id = 123)
.ToList() // you must execute query by calling ToList(), ToArray(),
// etc before joining
.Join(remote, a=> a.d, b=> (short?)b.Id, (a,b)=>new{b.Col1, b.Col2, a.Col1})
.Dump();
localContext.Database.Connection.Close();
localContext = null;
我不认为你能做到这一点。见this LinqPad request.
但是,您可以在单独的dll中构建多个dbml文件,并在LinqPad中引用它们。
拖放方法:按住Ctrl键,同时将其他数据库从Schema Explorer拖到查询编辑器。
使用案例:
//Access Northwind
var ID = new Guid("107cc232-0319-4cbe-b137-184c82ac6e12");
LotsOfData.Where(d => d.Id == ID).Dump();
//Access Northwind_v2
this.NORTHWIND_V2.LotsOfData.Where(d => d.Id == ID).Dump();
以上是关于LINQPad,使用多个datacontexts的主要内容,如果未能解决你的问题,请参考以下文章
有没有像 linqpad 这样的跨服务器 sql 请求实用程序?
WPF中利用控件的DataContext属性为多个TextBox绑定数据
在Microsoft Dynamic 365/2016环境使用LinqPad查询数据(不使用linqpad Microsoft Dynamic 365 Driver)