次の POCO クラスがあります。
public class BadgeClass
{
[Key]
[ScriptIgnore()]
//Internal ID not used for sending information to the OpenBadges API
public int BadgeID { get; set; }
//The name of the achievement.
[StringLength(128)]
public string Name { get; set; }
//A short description of the achievement.
[StringLength(128)]
public string Description { get; set; }
//URL of an image representing the achievement. Should be a square and in PNG format. Maximum size is 256kb.
public string Image { get; set; }
//URL of the criteria for earning the achievement. If the badge represents an educational achievement, consider marking
//up this up with LRMI
public string Criteria { get; set; }
//URL of the organization that issued the badge. Endpoint should be an IssuerOrganization
public string Issuer { get; set; }
//List of objects describing which educational standards this badge aligns to, if any.
//public List<AlignmentObject> Alignments { get; set; }
//List of tags that describe the type of achievement.
//public List<string> Tags { get; set; }
}
次のコードを使用して、オブジェクトを JSON にシリアル化し、ローカル ファイルに書き込もうとしています。
var json = JsonConvert.SerializeObject(newBadge);
System.IO.File.WriteAllText(@"c:\test.json", json);
これは、JSON ファイルが作成されているという点で非常にうまく機能していますが、シリアライゼーションから BadgeClassID フィールドを省略したいと考えています。ScriptIgnore マーカーがこれを処理してくれると思いました。これを行う方法はありますか?