24 | Map(x => x.Salutation, "TitleOfCourtesy").WithLengthOf(25); | 24 | base.Map(x => x.Salutation, "TitleOfCourtesy").WithLengthOf(25); |
25 | Map(x => x.FirstName).WithLengthOf(10); | 25 | base.Map(x => x.FirstName).WithLengthOf(10); |
26 | Map(x => x.LastName).WithLengthOf(20); | 26 | base.Map(x => x.LastName).WithLengthOf(20); |
27 | Map(x => x.JobTitle,"Title").WithLengthOf(30); | 27 | base.Map(x => x.JobTitle, "Title").WithLengthOf(30); |
28 | // Map(x => x.BirthDate); | 28 | // base.Map(x => x.BirthDate); |
29 | /* Map(x => x.HireDate); | 29 | /* base.Map(x => x.HireDate); |
30 | Map(x => x.Phone,"HomePhone").WithLengthOf(24); | 30 | base.Map(x => x.Phone,"HomePhone").WithLengthOf(24); |
35 | address.Map(a => a.City).WithLengthOf(15); | 35 | address.base.Map(a => a.City).WithLengthOf(15); |
36 | address.Map(a => a.CountryRegionName).WithLengthOf(15); | 36 | address.base.Map(a => a.CountryRegionName).WithLengthOf(15); |
37 | address.Map(a => a.PostalCode).WithLengthOf(10); | 37 | address.base.Map(a => a.PostalCode).WithLengthOf(10); |
38 | address.Map(a => a.StateProvinceName).WithLengthOf(15); | 38 | address.base.Map(a => a.StateProvinceName).WithLengthOf(15); |
39 | address.Map(a => a.AddressLine1,"Address").WithLengthOf(60); | 39 | address.base.Map(a => a.AddressLine1,"Address").WithLengthOf(60); |