วันอาทิตย์ที่ 27 พฤศจิกายน พ.ศ. 2559

One-to-Zero or One Relationship in Entity Framework

Public Class Student
    Public Property StudentId As Integer
    Public Property StudentName As String
    Public Overridable Property Address As StudentAddress
End Class
 
Public Class StudentAddress
    <ForeignKey("Student")>
    Public Property StudentAddressId As Integer
    Public Property Address1 As String
    Public Property Address2 As String
    Public Property City As String
    Public Property Zipcode As Integer
    Public Property State As String
    Public Property Country As String
    Public Overridable Property Student As Student
End Class


ไม่มีความคิดเห็น:

แสดงความคิดเห็น