0
我有以下要求如何在實體框架4.0中的兩個表之間添加關係
我在EF中有一個表和相應的實體。現在我的代碼將圖像插入到下表中。
PatientChartImages(
PatientChartImageId guid,
PatientChartId guid,
NoOfImages int,
PatientChartImage varBinary(Max)
)
我必須創建一個單獨的表並存儲圖像而不是PatientChartImages表。
PatientChartImagesSource(
PatientChartImageId,
PatientChartImage varBinary(Max)
)
是否有一個的EntityFramework方式,所以,每當我指PatientChartImages的PatientChartImage,PatientChartImagesSource的PatientChartImage被稱爲。這樣我就不必更改我的DAL。請建議。