EF跨庫查詢,DataBaseFirst下的解決方案


出於各種原因,有時需要跨數據庫訪問某些數據表,有同學已經給出了解決方案,比如  http://blog.csdn.net/hanjun0612/article/details/50475800 已經解決了code first 下跨數據庫訪問。但是如果已經是通過數據庫創建的模型用此方法。報錯xxxxxxxx。經過摸索下面給出DataBase First 下的解決方案

一、創建同義詞

本例中以查詢銀企互聯系統中某用戶代碼表為例 BankDirectLinkEnterprise為  數據庫名 CustromerCode 數據表名 BDE_CustomerCode為同義詞名

CREATE SYNONYM [dbo].[BDE_CustomerCode] FOR [BankDirectLinkEnterprise].[dbo].[CustomerCode]
--表結構如下

CREATE TABLE [dbo].[CustomerCode](
[ID] [int] IDENTITY(1,1) NOT NULL,
[Code] [nvarchar](50) NULL,
[ReceivedCustomerID] [int] NULL,
[Name] [nvarchar](50) NULL,
[IsPrimary] [bit] NULL,
[IsChargeCode] [bit] NULL,
CONSTRAINT [PK_CustomerCode] PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

 如果數據庫不在一個服務器下,請參見 http://blog.csdn.net/fanbin168/article/details/51104990 文中解決

二、仔細審視項目中 xxxx.edmx文件

用xml文本編輯器打開xxxx.demx文件我們發現其結構大致可分為4部分

1.描述了數據庫定義、2、描述了類定義、3、關聯類與數據庫、4、描述如果顯示類圖位置,具體見圖(圖中描述類與數據庫定義寫反了,見諒)

大概看懂之后就備份了一下,按需求改動

2、增加數據庫中的表定義 在 <edmx:StorageModels> <Schema> 節點中加入以下代碼

<EntityType Name="BDE_CustomerCode">
          <Key>
            <PropertyRef Name="ID" />
          </Key>
          <Property Name="ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
          <Property Name="Code" Type="nvarchar" MaxLength="100" />
          <Property Name="Name" Type="nvarchar" MaxLength="100" />
          <Property Name="ReceivedCustomerID" Type="int" />
          <Property Name="IsPrimary" Type="bit" />
          <Property Name="IsChargeCode" Type="bit" />
        </EntityType>

 增加容器定義  <edmx:StorageModels><Schema> <EntityContainer>節點下添加(雖然這個同義詞在數據庫中不存在,但是按其在原數據庫中的類型來添加,一點問題沒有)

<EntitySet Name="BDE_CustomerCode" EntityType="Self.BDE_CustomerCode" Schema="dbo" store:Type="Tables" />

  

3、增加數據定義,   在 <edmx:ConceptualModels><Schema>節點中加入以下代碼

 <EntityType Name="BDE_CustomerCode">
          <Key>
            <PropertyRef Name="ID" />
          </Key>
          <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
          <Property Name="Code" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
          <Property Name="Name" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
          <Property Name="ReceivedCustomerID" Type="Int32"  />
          <Property Name="IsPrimary" Type="Boolean" />
          <Property Name="IsChargeCode" Type="Boolean" />
        </EntityType>

  增加容器定義  <edmx:ConceptualModels><Schema> <EntityContainer>節點下添加


<EntitySet Name="BDE_CustomerCodes" EntityType="DB_OnlineOrderModel.BDE_CustomerCode" />

    DB_OnlineOrderModel為此項目的model命名空間,大家按自己項目改掉

3、增加數據定義與數據庫映射 <edmx:Mappings> Mapping節點下添加

<EntitySetMapping Name="BDE_CustomerCodes">
            <EntityTypeMapping TypeName="DB_OnlineOrderModel.BDE_CustomerCode">
              <MappingFragment StoreEntitySet="BDE_CustomerCode">
                <ScalarProperty Name="Code" ColumnName="Code" />
                <ScalarProperty Name="ReceivedCustomerID" ColumnName="ReceivedCustomerID" />
                <ScalarProperty Name="Name" ColumnName="Name" />
                <ScalarProperty Name="IsPrimary" ColumnName="IsPrimary" />
                <ScalarProperty Name="IsChargeCode" ColumnName="IsChargeCode" />
                <ScalarProperty Name="ID" ColumnName="ID" />
              </MappingFragment>
            </EntityTypeMapping>
          </EntitySetMapping>

  

4找個位置顯示它 <edmx:Designer>  <edmx:Diagrams>  <edmx:Diagram> 添加一條,如果不知道后面的pointx pointy 如何寫,照葫蘆畫瓢后可調整

  <edmx:EntityTypeShape EntityType="DB_OnlineOrderModel.BDE_CustomerCode" Width="1.875" PointX="14.5" PointY="0.625" />

5,關閉edmx文件,然后雙擊demx文件打開它,保存,這時vs一般會再按t4模版生成代碼。完畢之后就可以調用了

6,使用

var list =
                (from p in this.db.BDE_CustomerCodes
                where p.Name.Contains(q) || p.Code.Contains(q)
                select new
                {
                    CompanyName = p.Name,
                    CustomerCode = p.Code
                }).ToList();
            return Json(list, JsonRequestBehavior.AllowGet);

  

好了,方案完成了,但是此方案缺點還是很明顯的,人工干預的過程太多了,哪一環節出了問題都會引發錯誤。要是能自動化支持同義詞就更好了。

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM