我有一个incident
表,incidentTypeId(int)
它是一个允许 null 的外键。
该incidentType
表有两列Id auto increment primary key not null
和incidentType not null nvarchar
。
该incidentType
表用于填充一个DDL
我有一个listItem
被选为selected
“”的值。我正在检查值是否为“”,如果是,我将我的设置selectedValue
为DDL
空。
当我从DDL
一切都很好并且工作正常时,我选择了一些东西。
当我尝试并且insert
没有选择任何内容并将其设置为时,我在不允许 null的列上null
得到一个,因为它是主键。sqlexception on foreign key constraint
incidentType Id
我怎样才能绕过允许空?