I’m importing schema from SQL, such as:
CREATE TABLE Person( Id uniqueidentifier NOT NULL, Created datetime2(7) NOT NULL, Modified datetime2(7) NULL, LastName nvarchar(max) NULL, FirstName nvarchar(max) NULL, MiddleName nvarchar(max) NULL, DateOfBirth datetime2(7) NOT NULL )
All fields in the resulting schema are lowercase. Is it possible to maintain case when importing?
Thanks.