Como: adicionar uma entidade a um modelo
Para criar uma entidade, adicionar um controle de entidade de Visual Studio Toolbox para o designer de conectividade de dados de negócios (BDC).
Para adicionar uma entidade no modelo
Criar um projeto do BDC ou abrir um projeto existente do BDC.Para mais informações, consulte Criando um modelo de conectividade de dados de negócios.
No Toolbox, da BusinessDataCatalog de grupo, adicionar um entidade controle no designer.
A nova entidade é exibida no designer.Visual Studio adiciona um <Entity> elemento XML do arquivo de modelo BDC em seu projeto.Para obter mais informações sobre os atributos de um elemento de entidade, consulte entidade.
No designer, abra o menu de atalho para a entidade, escolha Adde escolha identificador de.
Aparece um novo identificador da entidade.
Observação Você pode alterar o nome da entidade e o identificador na Propriedades janela.
Defina os campos da entidade em uma classe.Você pode adicionar uma nova classe ao projeto ou usar uma classe existente criada usando outras ferramentas como o Object Relational Designer (O/R Designer).O exemplo a seguir mostra uma classe de entidade nomeada contato.
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
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; } }
Consulte também
Tarefas
Como: adicionar um método criador
Como: adicionar um método Deleter
Como: adicionar um método Updater