Hi,
This is a Primary Key.
In this Project we are using the EF Power Tools to generate the classes form db.
We want to move to your POCO Generator, to have more control of the generation. (pluralisatioen etc.)
Thanks
Christopher
This is a Primary Key.
In this Project we are using the EF Power Tools to generate the classes form db.
We want to move to your POCO Generator, to have more control of the generation. (pluralisatioen etc.)
CREATE TABLE [dbo].[CompanyGroup](
[cogID] [int] IDENTITY(1,1) NOT NULL,
[cogCompanyGroupName] [nvarchar](50) NULL,
[cogValidFrom] [datetime] NULL,
[cogValidTo] [datetime] NULL,
CONSTRAINT [PK_CompanyGroup] PRIMARY KEY CLUSTERED
(
[cogID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
What else can I provide to solve this issue? DB-Schema?, old Entities from EFPower Tools?Thanks
Christopher