用户登录
用户注册

分享至

为什么会话 ID 的性别为“00000000-0000-0000-0000-000000000000"?

  • 作者: sad浅梦
  • 来源: 51数据库
  • 2023-02-07

问题描述

在我的 db 表中,我有一个 PK 列 sessId 的 uniqueidentifier 设置了函数 newid().但是当我插入一条记录时,sessId 生成为 00000000-0000-0000-0000-000000000000.

In my db table i have a PK column sessId of uniqueidentifier set with the function newid(). But when i insert a record the sessId is generated as 00000000-0000-0000-0000-000000000000.

我认为这是一个系统错误,所以我运行 select newid() 它生成了一个新的 id.但是为什么列**入那些?

I thought this was a system error so i ran select newid() it generated a new id. but why the column gets inserted with those zeros?

推荐答案

发生的情况是您的 SessId 字段是一个 Guid,它是一个值类型,因此必须有一个默认值并且该值全为零.所以当保存到数据库时,字段上有一个值(全为零)并且不会触发数据库默认值.您可以在使用 Guid.NewGuid() 调用 SaveChanges() 之前给 SessId 一个值,并且不要依赖数据库来执行此操作.或者,如果您可以找到对实体执行此操作的方法,请将字段设为可空的 Guid,以便它以空值到达数据库.

What is happening is that your SessId field is a Guid which is a value type and therefore must have a default value and that value is all zeros. So when save to the database, there is a value on the field (all zeros) and the database default is not triggered. You can give SessId a value before calling SaveChanges() with Guid.NewGuid() and don't rely on the database to do it. Or, if you can find a way to do it on your entity, make the field a nullable Guid so that it arrives at the database as null.

软件
前端设计
程序设计
Java相关