本文整理汇总了C#中MongoRepository.ExistsUniqueItem方法的典型用法代码示例。如果您正苦于以下问题:C# MongoRepository.ExistsUniqueItem方法的具体用法?C# MongoRepository.ExistsUniqueItem怎么用?C# MongoRepository.ExistsUniqueItem使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MongoRepository
的用法示例。
在下文中一共展示了MongoRepository.ExistsUniqueItem方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ExistsUniqueItem_Own_ReturnItem
public void ExistsUniqueItem_Own_ReturnItem()
{
var repository = new MongoRepository<TestModel>();
repository.Drop();
var item = TestModel.CreateInstance();
repository.Insert(item);
item.IntValue = 5;
var result = repository.ExistsUniqueItem(item);
Assert.IsFalse(result);
}
示例2: ExistsUniqueItem_OnlySelf_ReturnNull
public void ExistsUniqueItem_OnlySelf_ReturnNull()
{
var repository = new MongoRepository<TestModel>();
repository.Drop();
var item = new TestModel { StringValue = "sinan" };
var item2 = new TestModel { StringValue = "sinan" };
repository.Insert(item);
var result = repository.ExistsUniqueItem(item2);
Assert.IsTrue(result);
}
示例3: ExistsUniqueItem_SelfAndWithOtherProperties_ReturnNull
public void ExistsUniqueItem_SelfAndWithOtherProperties_ReturnNull()
{
var repository = new MongoRepository<TestModel3>();
repository.Drop();
var item = new TestModel3 { StringValue = "sinan", StringValue2 = "akyazıcı", DateTimeValue = DateTime.Parse("01/01/1967") };
var item2 = new TestModel3 { StringValue = "sinan", StringValue2 = "akyazıcı", DateTimeValue = DateTime.Parse("01/01/1967") };
repository.Insert(item);
var result = repository.ExistsUniqueItem(item2);
Assert.IsTrue(result);
}
示例4: ExistsUniqueItem_WithOutBsonUnique_ReturnItem
public void ExistsUniqueItem_WithOutBsonUnique_ReturnItem()
{
var repository = new MongoRepository<TestModel4>();
repository.Drop();
var item = new TestModel4 { StringValue = "sinan", StringValue2 = "akyazıcı", DateTimeValue = DateTime.Parse("01/01/1967") };
var item2 = new TestModel4 { StringValue = "sinan", StringValue2 = "akyazıcıx", DateTimeValue = DateTime.Parse("02/01/1967") };
repository.Insert(item);
var result = repository.ExistsUniqueItem(item2);
Assert.IsFalse(result);
}
示例5: ExistsUniqueItem_WithOtherProperties_ReturnNull
public void ExistsUniqueItem_WithOtherProperties_ReturnNull()
{
var repository = new MongoRepository<TestModel2>();
repository.Drop();
var item = new TestModel2 { StringValue = "sinan", StringValue2 = "akyazıcı", IntValue = 5 };
var item2 = new TestModel2 { StringValue = "sinan", StringValue2 = "akyazıcı", IntValue = 5 };
repository.Insert(item);
var result = repository.ExistsUniqueItem(item2);
Assert.IsTrue(result);
}