0

私は、SO (タグ付けシステム) にあるものと非常によく似た機能を実現しようとしています。タグを入力すると、存在するかどうかが確認されます。存在しない場合は、結合テーブル (多対多) を介して投稿に関連付けられて作成されます。

これは次のように機能します: ユーザーはタグを ", " で区切られた値 (TagList) に入力します。TagList を RegEx で分割して、さまざまなタグを抽出します。データベースでタグを検索しようとします。存在しない場合は作成します。

これまでのところ、これは私が持っているものです:

レシピ.cs

public class Recipe
{
    [Key]
    public int RecipeId { get; set; }
    [Required]
    public string Name { get; set; }
    public string Subtitle { get; set; }
    public int Serving { get; set; }
    public string Instructions { get; set; }
    public int PrepTime { get; set;}
    public int CookingTime { get; set; }
    public IList<Wine> Wines { get; set; }
    public IList<Pairing> Pairings { get; set; } 
    public ICollection<UsedIngredient> UsedIngredients { get; set; }

    [NotMapped]
    public string TagList { get; set; }
    public IList<Tag> Tags { get; set; } 
}

タグ.cs

public class Tag
{
    public int TagId { get; set; }
    public string Name { get; set; }
    public ICollection<Recipe> Recipes { get; set; }      
}

結合テーブル

CreateTable(

"dbo.TagRecipes",
        c => new
            {
                Tag_TagId = c.Int(nullable: false),
                Recipe_RecipeId = c.Int(nullable: false),
            })
        .PrimaryKey(t => new { t.Tag_TagId, t.Recipe_RecipeId })
        .ForeignKey("dbo.Tags", t => t.Tag_TagId, cascadeDelete: true)
        .ForeignKey("dbo.Recipes", t => t.Recipe_RecipeId, cascadeDelete: true)
        .Index(t => t.Tag_TagId)
        .Index(t => t.Recipe_RecipeId);

TagRepo - FindOrCreate メソッド

public Tag FindOrCreateTag(string tagName)
{
    Tag tag = context.Tags.Where(t => t.Name == tagName).Include("Recipes").FirstOrDefault();
    if (tag == null)
    {
         tag = new Tag
         {
             Name = tagName,
             Recipes = new List<Recipe>()                        
          };
          context.Tags.Add(tag);
     }           
    return tag;
}

RecipeRepo - GetTagList

private IList<String> GetTagList(string tagString)
{
    IList<string> tagList = new List<string>(Regex.Split(tagString, @"\,\s*"));
    return tagList;
}

RecipeRepo - タグの割り当て

public void AssignTags(Recipe recipe, string tagString)
{
    if (recipe.Tags == null)
        recipe.Tags = new List<Tag>();
    IList<string> tags = GetTagList(tagString);
    foreach (string tagName in tags)
    {
        Tag tag = tagRepository.FindOrCreateTag(tagName);
        if (tag.Recipes == null)
           tag.Recipes = new List<Recipe>();
        if (!tag.Recipes.Any(r => r.RecipeId == recipe.RecipeId))
           tag.Recipes.Add(recipe);
        if (recipe.Tags.All(t => t.TagId != tag.TagId))
           recipe.Tags.Add(tag);
     }   
}

そして最後に、私はこれを呼び出します。

RecipeRepo - 更新

public bool Update(Recipe recipe)
{
    if (recipe.TagList != null)
        AssignTags(recipe, recipe.TagList);

     Recipe dbEnt = context.Recipes.Find(recipe.RecipeId);
     context.Entry(dbEnt).CurrentValues.SetValues(recipe);

     return Save();
}

何が起こるか - 文字列を受け取り、それを正しく分割します - しかし、その後、物事は少し南に行くようです. 単純に新しいタグを割り当てる代わりに、レシピ オブジェクトを複製します。

私が行方不明になったのは何ですか?

4

1 に答える 1