本文介绍了Lead Table到不同数据库中的另一个表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
例如,我们有一个数据库A有一个表'A1',第二个数据库B有一个表'B1'。
A和B不对称(没有相同的表格)。
A1和B1是对称的(具有相同的列)。
情况:我想在B1中获取行值,但是通过访问表A1。
在.Net MVC解决方案中,我有一个实体框架Model 'A',但我想使用相同的模型(由A创建)来访问B中表B1中的值(A1和B1是对称的)。
如何?
提前谢谢,
解决方案
For example we have a Database A have one table ' A1 ', and second database B have one table ' B1 '.
A and B are not symmetric (Don't have the same table).
A1 and B1 are symmetric (Have the same columns).
Situation : I want to get rows value in B1, but by access to the table A1.
In a .Net MVC solution, I have an entity framework Model created from ' A ', but I want to use the same model(Created from A) for access to the values in the table B1 in B (A1 and B1 are symmetric).
How ?
Thanks in advance,
解决方案
这篇关于Lead Table到不同数据库中的另一个表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!