本文整理匯總了C#中Subtext.Framework.Data.DatabaseObjectProvider.CreateLinkCategory方法的典型用法代碼示例。如果您正苦於以下問題:C# DatabaseObjectProvider.CreateLinkCategory方法的具體用法?C# DatabaseObjectProvider.CreateLinkCategory怎麽用?C# DatabaseObjectProvider.CreateLinkCategory使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Subtext.Framework.Data.DatabaseObjectProvider
的用法示例。
在下文中一共展示了DatabaseObjectProvider.CreateLinkCategory方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: CanGetRecentImages
public void CanGetRecentImages()
{
//arrange
UnitTestHelper.SetupBlog();
var repository = new DatabaseObjectProvider();
var category = new LinkCategory
{
BlogId = Config.CurrentBlog.Id,
Description = "Whatever",
IsActive = true,
Title = "Whatever"
};
int categoryId = repository.CreateLinkCategory(category);
var image = new Image
{
Title = "Title",
CategoryID = categoryId,
BlogId = Config.CurrentBlog.Id,
FileName = "Foo",
Height = 10,
Width = 10,
IsActive = true,
};
int imageId = repository.InsertImage(image);
//act
ICollection<Image> images = repository.GetImages(Config.CurrentBlog.Host, null, 10);
//assert
Assert.AreEqual(1, images.Count);
Assert.AreEqual(imageId, images.First().ImageID);
}
示例2: CanCreateAndDeleteLink
public void CanCreateAndDeleteLink()
{
UnitTestHelper.SetupBlog();
var repository = new DatabaseObjectProvider();
int categoryId =
repository.CreateLinkCategory(CreateCategory("My Favorite Feeds", "Some of my favorite RSS feeds",
CategoryType.LinkCollection, true));
Link link = CreateLink(repository, "Title", categoryId, null);
int linkId = link.Id;
Link loaded = repository.GetLink(linkId);
Assert.AreEqual("Title", loaded.Title);
Assert.AreEqual(NullValue.NullInt32, loaded.PostId);
Assert.AreEqual(Config.CurrentBlog.Id, loaded.BlogId);
repository.DeleteLink(linkId);
Assert.IsNull(repository.GetLink(linkId));
}
示例3: CanCreateAndDeleteLinkCategory
public void CanCreateAndDeleteLinkCategory()
{
UnitTestHelper.SetupBlog();
var repository = new DatabaseObjectProvider();
// Create some categories
int categoryId =
repository.CreateLinkCategory(CreateCategory("My Favorite Feeds", "Some of my favorite RSS feeds",
CategoryType.LinkCollection, true));
LinkCategory category = repository.GetLinkCategory(categoryId, true);
Assert.AreEqual(Config.CurrentBlog.Id, category.BlogId);
Assert.AreEqual("My Favorite Feeds", category.Title);
Assert.AreEqual("Some of my favorite RSS feeds", category.Description);
Assert.IsTrue(category.HasDescription);
Assert.IsFalse(category.HasLinks);
Assert.IsFalse(category.HasImages);
Assert.IsTrue(category.IsActive);
Assert.AreEqual(CategoryType.LinkCollection, category.CategoryType);
Assert.IsNotNull(category);
repository.DeleteLinkCategory(categoryId);
Assert.IsNull(repository.GetLinkCategory(categoryId, true));
}
示例4: CanUpdateLink
public void CanUpdateLink()
{
UnitTestHelper.SetupBlog();
var repository = new DatabaseObjectProvider();
// Create the categories
CreateSomeLinkCategories(repository);
int categoryId =
repository.CreateLinkCategory(CreateCategory("My Favorite Feeds", "Some of my favorite RSS feeds",
CategoryType.LinkCollection, true));
Link link = CreateLink(repository, "Test", categoryId, null);
int linkId = link.Id;
Link loaded = repository.GetLink(linkId);
Assert.AreEqual("Test", loaded.Title);
Entry entry = UnitTestHelper.CreateEntryInstanceForSyndication("test", "test", "test");
//Make changes then update.
link.PostId = entry.Id;
link.Title = "Another title";
link.NewWindow = true;
repository.UpdateLink(link);
loaded = repository.GetLink(linkId);
Assert.AreEqual("Another title", loaded.Title);
Assert.IsTrue(loaded.NewWindow);
Assert.AreEqual(entry.Id, loaded.PostId);
}
示例5: CanGetCategoriesByPostId
public void CanGetCategoriesByPostId()
{
UnitTestHelper.SetupBlog();
var repository = new DatabaseObjectProvider();
int category1Id =
repository.CreateLinkCategory(CreateCategory("Post Category 1", "Cody roolz!", CategoryType.PostCollection,
true));
int category2Id =
repository.CreateLinkCategory(CreateCategory("Post Category 2", "Cody roolz again!",
CategoryType.PostCollection, true));
repository.CreateLinkCategory(CreateCategory("Post Category 3", "Cody roolz and again!",
CategoryType.PostCollection, true));
Entry entry = UnitTestHelper.CreateEntryInstanceForSyndication("phil", "title", "body");
int entryId = UnitTestHelper.Create(entry);
repository.SetEntryCategoryList(entryId, new[] { category1Id, category2Id });
ICollection<LinkCategory> categories = repository.GetLinkCategoriesByPostId(entryId);
Assert.AreEqual(2, categories.Count, "Expected two of the three categories");
Assert.AreEqual(category1Id, categories.First().Id);
Assert.AreEqual(category2Id, categories.ElementAt(1).Id);
Assert.AreEqual(Config.CurrentBlog.Id, categories.First().BlogId);
}