[성현모] SecondaryKey Null허용으로 수정

This commit is contained in:
SHM
2025-10-30 09:48:05 +09:00
parent 05fb9a64e1
commit 29ea311cd3
11 changed files with 22 additions and 13 deletions

Binary file not shown.

Binary file not shown.

View File

@ -1,7 +1,7 @@
CREATE TABLE [dbo].[tPairKeyStorage]
(
[cPrimaryKey] NVARCHAR(50) NOT NULL,
[cSecondaryKey] NVARCHAR(50) NOT NULL,
[cSecondaryKey] NVARCHAR(50) NULL,
[cValue1] NVARCHAR(200),
[cValue2] NVARCHAR(200),
[cDateTime] DATETIME2 NOT NULL,

View File

@ -7,7 +7,7 @@ public partial class tPairKeyStorage
{
public string cPrimaryKey { get; set; } = null!;
public string cSecondaryKey { get; set; } = null!;
public string? cSecondaryKey { get; set; }
public string? cValue1 { get; set; }