我有2个表格Posts(ID,Title,DateTime,Body)和Tags(Id,Name)(以及PostsTags(PostID,TagID))和c#类: PostModel.cs:
public class PostModel
{
[Key]
[Required]
public int ID { get; set; }
[Required]
public string Title { get; set; }
[Required]
public DateTime DateTime { get; set; }
[Required]
public string Body { get; set; }
public List<TagModel> Tags { get; set; }
public List<CommentModel> Comments { get; set; }
public List<LikeModel> Likes { get; set; }
}
TagModel.cs:
public class TagModel
{
[Key]
[Required]
public int ID { get; set; }
public string Name { get; set; }
public List<PostModel> Posts { get; set; }
}
现在我要列出所有具有特定标签名称的帖子,让我们说“偶数” 所以我要做的是先获得偶数的TagID
query = "SELECT ID FROM Tags where [Name]='" + tagName + "'";
然后获取带有该标签的帖子
int tagId = int.Parse(dtTag.Rows[0][0].ToString());
query = "select [ID],[Title],[DateTime],[Body] from Posts inner join PostsTag on ID = PostID AND TagID =" + tagId;
,现在在嵌套的foreach循环中,我开始填充Post,但问题是 我填充Post及其标签->我将必须在标签类中填充帖子->我将必须将标签类中的帖子->我将必须填充标签类中的帖子,依此类推。 如果我不这样做,我会得到空引用。那么如何更改我的c#类以使其工作呢?
foreach (DataRow row1 in dtTag.Rows)
{
PostModel post = new PostModel();
post.Body = row1["Body"].ToString();
post.ID = int.Parse(row1["ID"].ToString());
post.DateTime = (DateTime)row1["DateTime"];
post.Title = row1["Title"].ToString();
int id1 = post.ID;
query = "SELECT [ID],[Name] FROM Tags as T inner join PostsTag as P on p.TagID=T.ID AND p.PostID=" + id1;
da = new SqlDataAdapter(query, sqlCon);
dtTag.Clear();
da.Fill(dtTag);
List<TagModel> tags = new List<TagModel>();
foreach (DataRow row in dtTag.Rows)
{
TagModel tag1 = new TagModel();
tag1.ID = int.Parse(row["ID"].ToString());
tag1.Name = row["Name"].ToString();
query = "select [ID],[Title],[DateTime],[Body] from Posts inner join PostsTag on ID = PostID AND TagID =" + tag1.ID;
// here I will need to fill tag1.Posts and after that post.tags and so on
tags.Add(tag1);
}
post.Tags = tags;
}
注意:我知道使用实体框架更容易,但是我的老师要求是使用手动SQL查询。
答案 0 :(得分:0)
最简单的解决方案是将列表保留在Post或Tag上,无论您将哪个作为主要对象。我会认为带有标签列表的帖子(尽管根据使用情况可能会相反)。
另一方面,您应该使用参数化的sql。最好不要因为风险sql注入攻击而直接向sql添加参数。