Aby utworzyć jednostkę, dodaj kontrolkę jednostki z przybornika programu Visual Studio do projektanta Połączenie ivity (BDC).
Aby dodać jednostkę do modelu
Utwórz projekt usługi BDC lub otwórz istniejący projekt usługi BDC. Aby uzyskać więcej informacji, zobacz Tworzenie modelu łączności danych biznesowych.
W przyborniku z grupy BusinessDataCatalog dodaj kontrolkę Jednostka do projektanta.
Nowa jednostka zostanie wyświetlona w projektancie. Program Visual Studio dodaje <Entity> element do kodu XML pliku modelu usługi BDC w projekcie. Aby uzyskać więcej informacji na temat atrybutów elementu jednostki, zobacz Entity (Jednostka).
W projektancie otwórz menu skrótów dla jednostki, wybierz pozycję Dodaj, a następnie wybierz pozycję Identyfikator.
W jednostce zostanie wyświetlony nowy identyfikator.
Uwaga
Nazwę jednostki i identyfikator można zmienić w oknie Właściwości .
Zdefiniuj pola jednostki w klasie. Możesz dodać nową klasę do projektu lub użyć istniejącej klasy utworzonej przy użyciu innych narzędzi, takich jak Projektant relacyjne obiekty (O/R Projektant). W poniższym przykładzie przedstawiono klasę jednostki o nazwie Contact.
public partial class Contact
{
public int ContactID { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string EmailAddress { get; set; }
public string Phone { get; set; }
public int EmailPromotion { get; set; }
public bool NameStyle { get; set; }
public string PasswordHash { get; set; }
public string PasswordSalt { get; set; }
}
Partial Public Class Contact
Private _ContactID As Integer
Public Property ContactID() As Integer
Get
Return _ContactID
End Get
Set(ByVal value As Integer)
_ContactID = value
End Set
End Property
Private _FirstName As String
Public Property FirstName() As String
Get
Return _FirstName
End Get
Set(ByVal value As String)
_FirstName = value
End Set
End Property
Private _LastName As String
Public Property LastName() As String
Get
Return _LastName
End Get
Set(ByVal value As String)
_LastName = value
End Set
End Property
Private _EmailAddress As String
Public Property EmailAddress() As String
Get
Return _EmailAddress
End Get
Set(ByVal value As String)
_EmailAddress = value
End Set
End Property
Private _Phone As String
Public Property Phone() As String
Get
Return _Phone
End Get
Set(ByVal value As String)
_Phone = value
End Set
End Property
Private _EmailPromotion As Integer
Public Property EmailPromotion() As Integer
Get
Return _EmailPromotion
End Get
Set(ByVal value As Integer)
_EmailPromotion = value
End Set
End Property
Private _NameStyle As Boolean
Public Property NameStyle() As Boolean
Get
Return _NameStyle
End Get
Set(ByVal value As Boolean)
_NameStyle = value
End Set
End Property
Private _PasswordHash As String
Public Property PasswordHash() As String
Get
Return _PasswordHash
End Get
Set(ByVal value As String)
_PasswordHash = value
End Set
End Property
Private _PasswordSalt As String
Public Property PasswordSalt() As String
Get
Return _PasswordSalt
End Get
Set(ByVal value As String)
_PasswordSalt = value
End Set
End Property
End Class