1. 程式人生 > >EF跨庫查詢,DataBaseFirst下的解決方案

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

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

一、建立同義詞

本例中以查詢銀企互聯絡統中某使用者程式碼表為例 BankDirectLinkEnterprise為  資料庫名 CustromerCode 資料表名 BDE_CustomerCode為同義詞名

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

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>節點下新增(雖然這個同義詞在資料庫中不存在,但是按其在原資料庫中的型別來新增,一點問題沒有)

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

  

3、增加資料定義,   在 <edmx:ConceptualModels><Schema>節點中加入以下程式碼

1 2 3 4 5 6 7 8 9 10 11 < 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>節點下新增

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

    DB_OnlineOrderModel為此專案的model名稱空間,大家按自己專案改掉

3、增加資料定義與資料庫對映 <edmx:Mappings> Mapping節點下新增

1 2 3 4 5 6 7 8 9 10 11 12 < 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,使用

1 2 3 4 5 6 7 8 9 var  list =                  ( from  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);

  

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