本文整理汇总了C#中InternalModelBuilder.HasBaseType方法的典型用法代码示例。如果您正苦于以下问题:C# InternalModelBuilder.HasBaseType方法的具体用法?C# InternalModelBuilder.HasBaseType怎么用?C# InternalModelBuilder.HasBaseType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类InternalModelBuilder
的用法示例。
在下文中一共展示了InternalModelBuilder.HasBaseType方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: OnBaseEntityTypeSet_calls_apply_on_conventions_in_order
public void OnBaseEntityTypeSet_calls_apply_on_conventions_in_order(bool useBuilder)
{
var conventions = new ConventionSet();
InternalEntityTypeBuilder entityTypeBuilder = null;
var convention = new Mock<IBaseTypeConvention>();
convention.Setup(c => c.Apply(It.IsAny<InternalEntityTypeBuilder>(), It.IsAny<EntityType>()))
.Returns<InternalEntityTypeBuilder, EntityType>((b, t) =>
{
Assert.NotNull(b);
Assert.Null(t);
entityTypeBuilder = b;
return true;
});
conventions.BaseEntityTypeSetConventions.Add(convention.Object);
var nullConvention = new Mock<IBaseTypeConvention>();
nullConvention.Setup(c => c.Apply(It.IsAny<InternalEntityTypeBuilder>(), It.IsAny<EntityType>()))
.Returns<InternalEntityTypeBuilder, EntityType>((b, t) =>
{
Assert.Null(t);
Assert.Same(entityTypeBuilder, b);
return false;
});
conventions.BaseEntityTypeSetConventions.Add(nullConvention.Object);
var extraConvention = new Mock<IBaseTypeConvention>();
extraConvention.Setup(c => c.Apply(It.IsAny<InternalEntityTypeBuilder>(), It.IsAny<EntityType>()))
.Returns<InternalEntityTypeBuilder, EntityType>((b, t) =>
{
Assert.False(true);
return false;
});
conventions.BaseEntityTypeSetConventions.Add(extraConvention.Object);
var builder = new InternalModelBuilder(new Model(conventions))
.Entity(typeof(SpecialOrder), ConfigurationSource.Convention);
if (useBuilder)
{
Assert.NotNull(builder.HasBaseType(typeof(Order), ConfigurationSource.Convention));
}
else
{
builder.Metadata.HasBaseType(builder.Metadata.Model.AddEntityType(typeof(Order)), ConfigurationSource.Convention);
}
Assert.NotNull(entityTypeBuilder);
}