通过 Linq to SQL 代码使用数据库默认值

发布于 2024-09-01 04:43:46 字数 661 浏览 5 评论 0原文

我正在将动态数据与 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

糖粟与秋泊 2024-09-08 04:43:46

我通过扩展部分插入更新类并检查 guid 是否已填充来解决问题

部分无效
插入CMS_Data_History(CMS_Data_History
实例)
{

 if(instance.entity_id == Guid.Empty)
        {
            instance.entity_id = Guid.NewGuid();
        }
        this.ExecuteDynamicInsert(实例);

    }

    部分无效 UpdateCMS_Data_History(CMS_Data_History

实例)
{
if (instance.version_date == DateTime.MinValue)
{
instance.version_date = DateTime.Now;
}
this.ExecuteDynamicUpdate(实例);
}

I solved the problem by extending the partial insert en update class and check there if the guid is filled

partial void
InsertCMS_Data_History(CMS_Data_History
instance)
{

        if(instance.entity_id == Guid.Empty)
        {
            instance.entity_id = Guid.NewGuid();
        }
        this.ExecuteDynamicInsert(instance);

    }

    partial void UpdateCMS_Data_History(CMS_Data_History

instance)
{
if (instance.version_date == DateTime.MinValue)
{
instance.version_date = DateTime.Now;
}
this.ExecuteDynamicUpdate(instance);
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文