Hello,
Say I have 2 tables
Users and Workers
In Users I have:
UserId
DateAdded
DateLastLogin
Password
Email
In Workers I have
WorkerId
UserId
Name
LastName
DateBirth
As you see there is a relation between Workers and Users table (Workers.UserId=Users.UserId). In stead of creating 2 Entities I would like to have only one Entity named Workers in which I would like to have all fields from within Users table. How can I create a such entity using LlblGen Pro code generator.
Version: 3.1
using Adapter mode.
Language C#
DB: Sql Server 2008