通过 Linq to SQL 代码使用数据库默认值
我正在将动态数据与 linq to SQL 和 SQL Server 2008 一起使用。
我有一个 GUID 列,它使用 newguid() 从默认值获取其值。当我在设计器中将 IsDbGenerate 设置为 true 时,它就像一个魅力。
但是当我更新表时,该属性再次设置回 false。所以我将其添加到元数据中。由于某种原因,它没有被拾取,“00000000-0000-0000-0000-000000000000”被插入数据库中。正在获取显示名称和只读更改。
我缺少什么?
[MetadataType(typeof(CMS_Data_HistoryMetadata))] 公共部分类 CMS_Data_History {
<前><代码>} [表名(“内容”)] 公共类 CMS_Data_HistoryMetadata { [DisplayName("页面标题")] 公共对象 pageTitleBar { 获取;放; } [只读(真)] [显示名称(“Versie”)] 公共对象 version_date { 获取;放; } [ColumnAttribute(IsDbGenerate = true)] 公共对象entity_id; }
I am using Dynamic Data with linq to SQL and SQL Server 2008.
I have a GUID column that gets his value from the default value with newguid(). When I set IsDbGenerated to true in the designer it works like a charm.
But when I renew table this property is set back to false again. So I added it to the metadata. For some reason it's not being pickup, "00000000-0000-0000-0000-000000000000" is being inserted in database. The displayname and readonly change are being pick up.
What am I missing?
[MetadataType(typeof(CMS_Data_HistoryMetadata))]
public partial class CMS_Data_History
{} [TableName("Content")] public class CMS_Data_HistoryMetadata { [DisplayName("Pagina Title")] public object pageTitleBar { get; set; } [ReadOnly(true)] [DisplayName("Versie")] public object version_date { get; set; } [ColumnAttribute(IsDbGenerated = true)] public object entity_id; }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过扩展部分插入更新类并检查 guid 是否已填充来解决问题
I solved the problem by extending the partial insert en update class and check there if the guid is filled