通过实体框架更新时,自动生成的Guid Id为空

时间:2013-04-02 15:40:01

标签: entity-framework guid

为了尝试隔离bug的来源,我构建了以下内容:

SQL Server表:

 CREATE TABLE [dbo].[Names]
  ([Key] [uniqueidentifier] NOT NULL,
   [Name] [nvarchar](50) NULL,  
   CONSTRAINT [PK_Names] PRIMARY KEY CLUSTERED ([Key] ASC)
  )
 GO

 ALTER TABLE [dbo].[Names] ADD CONSTRAINT [DF_Names_Key] DEFAULT (newid()) FOR [Key] 

当我通过SQL Server Management Studio向此表添加行时,guid会按预期获得一个值。

然后我用这个表创建一个EF模型,这产生了以下代码:

/// <summary>
/// No Metadata Documentation available.
/// </summary>
[EdmEntityTypeAttribute(NamespaceName="Model1", Name="Names")]
[Serializable()]
[DataContractAttribute(IsReference=true)]
public partial class Names : EntityObject
{
    #region Factory Method

    /// <summary>
    /// Create a new Names object.
    /// </summary>
    /// <param name="key">Initial value of the Key property.</param>
    public static Names CreateNames(global::System.Guid key)
    {
        Names names = new Names();
        names.Key = key;
        return names;
    }

    #endregion

    #region Primitive Properties

    /// <summary>
    /// No Metadata Documentation available.
    /// </summary>
    [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)]
    [DataMemberAttribute()]
    public global::System.Guid Key
    {
        get
        {
            return _Key;
        }
        set
        {
            if (_Key != value)
            {
                OnKeyChanging(value);
                ReportPropertyChanging("Key");
                _Key = StructuralObject.SetValidValue(value);
                ReportPropertyChanged("Key");
                OnKeyChanged();
            }
        }
    }
    private global::System.Guid _Key;
    partial void OnKeyChanging(global::System.Guid value);
    partial void OnKeyChanged();

    /// <summary>
    /// No Metadata Documentation available.
    /// </summary>
    [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)]
    [DataMemberAttribute()]
    public global::System.String Name
    {
        get
        {
            return _Name;
        }
        set
        {
            OnNameChanging(value);
            ReportPropertyChanging("Name");
            _Name = StructuralObject.SetValidValue(value, true);
            ReportPropertyChanged("Name");
            OnNameChanged();
        }
    }
    private global::System.String _Name;
    partial void OnNameChanging(global::System.String value);
    partial void OnNameChanged();

然后我创建了一个测试来向表中添加数据:

    [TestMethod]
    public void WriteTestMethod1()
    {
        using (Model1Container context = new Model1Container())
        {
            Names n = new Names();
            n.Name = "T2";

            context.Names.AddObject(n);
            context.SaveChanges();
        }

    }

结果是插入了行,但Guid为空(全为零)

为什么会这样? EF可以使用数据库生成的Guids吗?

1 个答案:

答案 0 :(得分:0)

这很老了,但还是有一个答案,因为它仍然很重要。

  • 您的测试代码将创建class Names的实例,并将值分配给Name属性。
  • 您没有明确分配任何内容给Key属性。 Key属性的类型为Guid,它是一个结构(值类型),而不是类(引用类型),因此它永远不能为null,并且始终只有默认值。 Guid的未初始化默认值为全零字段。
  • 当您添加/保留该实体实例时,由于这两个字段都存在值,因此EF会为这两个字段生成INSERT。
  • 由于在客户端的INSERT语句中提供了值,因此未使用架构中定义的默认值表达式。

通过将Key字段定义为可为空,可以获取服务器生成的uid值,该字段将与Guid?(而不是Guid)的C#中的字段类型相对应。然后,您可以允许Key值在代码中保持为空,并且将使用服务器定义的默认表达式。

但是,如果此字段是您的主键,则可能不需要空字段。在这种情况下,我使用构造器来设置Guid值(在客户端是),而不是允许其采用默认值。