标签: sql database angular api azure
我正在尝试插入带有运动和sportevent的新sporthall。我正在使用我从Angular App访问的.NET核心API。值正确提交:
sportevent
sporthall
但是当我尝试在我的数据库中插入sportevent(带有sport和sporthall)时,我得到了这个例外:
sport
我尝试使用此命令将IDENTITY_INSERT设置为ON:
IDENTITY_INSERT
ON
SET IDENTITY_INSERT dbo.Sport ON;
我的数据库托管在Azure上。
有没有人知道这个问题的解决方案?