為了說(shuō)明什么是復(fù)雜屬性,先舉一個(gè)例子。
十多年的新興網(wǎng)站建設(shè)經(jīng)驗(yàn),針對(duì)設(shè)計(jì)、前端、開(kāi)發(fā)、售后、文案、推廣等六對(duì)一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。營(yíng)銷(xiāo)型網(wǎng)站的優(yōu)勢(shì)是能夠根據(jù)用戶(hù)設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整新興建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無(wú)論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。創(chuàng)新互聯(lián)建站從事“新興網(wǎng)站設(shè)計(jì)”,“新興網(wǎng)站推廣”以來(lái),每個(gè)客戶(hù)項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。 public class CompanyAddress
{
public int ID { get; set; }
public string CompanyName { get; set; }
public string StreetAddress { get; set; }
public string City { get; set; }
public string State { get; set; }
public string ZipCode { get; set; }
}
public class FamilyAddress
{
public int ID { get; set; }
public string StreetAddress { get; set; }
public string City { get; set; }
public string State { get; set; }
public string ZipCode { get; set; }
}
上面有兩個(gè)類(lèi):公司地址和家庭地址,它們有四個(gè)相同的屬性:StreetAddress、City、State、ZipCode。映射到數(shù)據(jù)庫(kù)中的結(jié)構(gòu)如圖:
這里,我們可以將這四個(gè)屬性集合成一個(gè)復(fù)雜屬性Address,修改后的類(lèi)為:
public class CompanyAddress
{
public int ID { get; set; }
public string CompanyName { get; set; }
public Address Address { get; set; }
}
public class FamilyAddress
{
public int ID { get; set; }
public Address Address { get; set; }
}
[ComplexType]
public class Address
{
public string StreetAddress { get; set; }
public string City { get; set; }
public string State { get; set; }
public string ZipCode { get; set; }
}
此時(shí),所生成的數(shù)據(jù)庫(kù)如圖:
可以看到,兩張表中仍然具有相應(yīng)的地址屬性信息。代碼中的Address類(lèi)就是復(fù)雜屬性,它并不會(huì)在數(shù)據(jù)庫(kù)中映射成相應(yīng)的表,但我們的代碼確簡(jiǎn)潔了許多。
所以如果有幾個(gè)屬性在幾個(gè)類(lèi)中都有用到,那么就可以將這幾個(gè)屬性集合成一個(gè)復(fù)雜類(lèi)型,并在相應(yīng)的類(lèi)中增加這個(gè)復(fù)雜類(lèi)型的屬性。