标签: entity-framework
我确信我不是第一个与此斗争的人。
我正在使用Entity Framework 1(VS2008),表中的一列是ModifiedDate。它在SQL Server中有DefaultValue(getdate());所以我想把它留给DB来做这一代。但是,生成的SQL具有INSERT (... ModifiedDate) VALUES (... null),并且未插入默认值。
INSERT (... ModifiedDate) VALUES (... null)
是否可以不指定此列?
答案 0 :(得分:1)
在SSDL中设置StoreGeneratedPattern。