2016-03-31から1日間の記事一覧

Entity Framework でエンティティを削除したら取得済みエンティティの外部キーが null になっていてハマッた

C#

Id の型に int ではなく string を使った public class Item { public string Id { get; set; } public string ProjectId { get; set; } public string Title { get; set; } public string Content { get; set; } } のようなエンティティで public class Ite…