本文整理汇总了C#中Subtext.Framework.Data.DatabaseObjectProvider.GetPagedFeedback方法的典型用法代码示例。如果您正苦于以下问题:C# DatabaseObjectProvider.GetPagedFeedback方法的具体用法?C# DatabaseObjectProvider.GetPagedFeedback怎么用?C# DatabaseObjectProvider.GetPagedFeedback使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Subtext.Framework.Data.DatabaseObjectProvider
的用法示例。
在下文中一共展示了DatabaseObjectProvider.GetPagedFeedback方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CanGetAllApprovedComments
public void CanGetAllApprovedComments()
{
Entry entry = SetupBlogForCommentsAndCreateEntry();
var repository = new DatabaseObjectProvider();
FeedbackItem commentOne = CreateAndUpdateFeedbackWithExactStatus(entry, FeedbackType.Comment,
FeedbackStatusFlag.Approved);
FeedbackItem commentTwo = CreateAndUpdateFeedbackWithExactStatus(entry, FeedbackType.Comment,
FeedbackStatusFlag.ApprovedByModerator);
FeedbackItem commentThree = CreateAndUpdateFeedbackWithExactStatus(entry, FeedbackType.Comment,
FeedbackStatusFlag.ConfirmedSpam);
repository.ConfirmSpam(commentThree, null);
FeedbackItem commentFour = CreateAndUpdateFeedbackWithExactStatus(entry, FeedbackType.Comment,
FeedbackStatusFlag.FalsePositive);
//We expect three of the four.
IPagedCollection<FeedbackItem> feedback = repository.GetPagedFeedback(0, 10,
FeedbackStatusFlag.
Approved,
FeedbackStatusFlag.None,
FeedbackType.Comment);
Assert.AreEqual(3, feedback.Count, "We expected three to match.");
//Expect reverse order
Assert.AreEqual(commentOne.Id, feedback[2].Id, "The first does not match");
Assert.AreEqual(commentTwo.Id, feedback[1].Id, "The first does not match");
Assert.AreEqual(commentFour.Id, feedback[0].Id, "The first does not match");
}
示例2: CanGetItemsFlaggedAsSpam
public void CanGetItemsFlaggedAsSpam()
{
Entry entry = SetupBlogForCommentsAndCreateEntry();
var repository = new DatabaseObjectProvider();
CreateAndUpdateFeedbackWithExactStatus(entry, FeedbackType.Comment, FeedbackStatusFlag.FalsePositive);
CreateAndUpdateFeedbackWithExactStatus(entry, FeedbackType.Comment, FeedbackStatusFlag.Approved);
CreateAndUpdateFeedbackWithExactStatus(entry, FeedbackType.Comment, FeedbackStatusFlag.ConfirmedSpam);
FeedbackItem included = CreateAndUpdateFeedbackWithExactStatus(entry, FeedbackType.Comment,
FeedbackStatusFlag.FlaggedAsSpam);
FeedbackItem includedToo = CreateAndUpdateFeedbackWithExactStatus(entry, FeedbackType.Comment,
FeedbackStatusFlag.FlaggedAsSpam |
FeedbackStatusFlag.NeedsModeration);
//We expect 2 of the four.
IPagedCollection<FeedbackItem> feedback = repository.GetPagedFeedback(0, 10,
FeedbackStatusFlag.
FlaggedAsSpam,
FeedbackStatusFlag.
Approved |
FeedbackStatusFlag.
Deleted,
FeedbackType.Comment);
Assert.AreEqual(2, feedback.Count, "We expected two to match.");
//Expect reverse order
Assert.AreEqual(included.Id, feedback[1].Id, "The first does not match");
Assert.AreEqual(includedToo.Id, feedback[0].Id, "The second does not match");
}