gpt4 book ai didi

asp.net-mvc - ScriptIgnore 属性不适用于部分类

转载 作者:行者123 更新时间:2023-12-02 05:07:46 26 4
gpt4 key购买 nike

我在部分 View 上使用 ScriptIgnore 标记来阻止属性序列化时遇到问题。

var 文档 = @Html.Raw(Json.Encode(Model))

有趣的是,当我将属性直接添加到 .tt 文件中的分部类时,它按预期工作,但因为当我执行代码生成时该文件将被覆盖,所以我尝试使用 MetadataType

[MetadataType(typeof(DocumentMeta))] //this is added so we can add meta data to our partial class..
public partial class Document
{

}


[MetadataType(typeof(DocumentCategoryMeta))] //this is added so we can add meta data to our partial class..
public partial class DocumentCategory
{

}


public class DocumentMeta
{
[ScriptIgnore] //We add the scriptignore here because we are serializing some of these entities in client code
public virtual ICollection<DocumentCategory> DocumentCategories { get; set; }
}

public class DocumentCategoryMeta
{
[ScriptIgnore] //We add the scriptignore here because we are serializing some of these entities in client code
public virtual DocumentCategory Parent { get; set; }
}

我仍然遇到同样的错误:序列化“DocumentCategory”类型的对象时检测到循环引用。

因为DocumentCategory包含分层数据。

任何帮助将不胜感激!

部落84

最佳答案

尝试[ScriptIgnore(ApplyToOverrides = true)]

关于asp.net-mvc - ScriptIgnore 属性不适用于部分类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22641475/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com