嵌套评论列表设计及查询
表设计 create table comments( id int pk,//主键 content varchar(200),//内容 time datetime,//时间 user_id int,//评论者ID parent_id int,//父级评论ID article_id int,//对像ID,比如文章ID ); //以下仅手打示例代码 //先取出要展示的10条评论 var commentList = db.comments.where(f=>f.article_id==Id).Take(10).ToList(); //取出父级ID var parentIdList = commentList .select(f=>f.parent_id).ToList(); //取出父级评论列表 var parentC...
PHP Tools for VS 2013(永久免费版)
PHP Tools for vs2013是一个vs的扩展应用,它使得熟悉VS的用户去开发PHP变得便捷.没有比使用自己熟悉的工具更具有效率了.而且它支持在.php文件中智能编辑html标签(如智能缩进等的),这是aptana studio,PDT,PHPStorm等工具难以企及的.有人说Visual Studio是最好用的IDE,我十分同意 PHP Tools for VS 2013(永久免费版) 下载地: http://dl.download.csdn.net/down10/20150613/92d1bdaea06bb13b6d78ff358dd1cbf7.zip?response-content-disposition=attachment%3Bfilename%3D%22PHP%20Tools%201.15.5962%20For%2...