本文整理汇总了C#中IEdmType.ToTraceString方法的典型用法代码示例。如果您正苦于以下问题:C# IEdmType.ToTraceString方法的具体用法?C# IEdmType.ToTraceString怎么用?C# IEdmType.ToTraceString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IEdmType
的用法示例。
在下文中一共展示了IEdmType.ToTraceString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetTypeReference
private static IEdmTypeReference GetTypeReference(IEdmType edmType)
{
Ensure.NotNull(edmType, "edmType");
var isNullable = false;
switch (edmType.TypeKind)
{
case EdmTypeKind.Collection:
return new EdmCollectionTypeReference(edmType as IEdmCollectionType);
case EdmTypeKind.Complex:
return new EdmComplexTypeReference(edmType as IEdmComplexType, isNullable);
case EdmTypeKind.Entity:
return new EdmEntityTypeReference(edmType as IEdmEntityType, isNullable);
case EdmTypeKind.EntityReference:
return new EdmEntityReferenceTypeReference(edmType as IEdmEntityReferenceType, isNullable);
case EdmTypeKind.Enum:
return new EdmEnumTypeReference(edmType as IEdmEnumType, isNullable);
case EdmTypeKind.Primitive:
return new EdmPrimitiveTypeReference(edmType as IEdmPrimitiveType, isNullable);
default:
throw Error.NotSupported(Resources.EdmTypeNotSupported, edmType.ToTraceString());
}
}
示例2: TestTypeMatch
private static bool TestTypeMatch(this IEdmType expressionType, IEdmType assertedType, EdmLocation location, bool matchExactly, out IEnumerable<EdmError> discoveredErrors)
{
if (matchExactly)
{
if (!expressionType.IsEquivalentTo(assertedType))
{
discoveredErrors = new EdmError[] { new EdmError(location, EdmErrorCode.ExpressionNotValidForTheAssertedType, Edm.Strings.EdmModel_Validator_Semantic_ExpressionNotValidForTheAssertedType) };
return false;
}
}
else
{
// A bad type matches anything (so as to avoid generating spurious errors).
if (expressionType.TypeKind == EdmTypeKind.None || expressionType.IsBad())
{
discoveredErrors = Enumerable.Empty<EdmError>();
return true;
}
if (expressionType.TypeKind == EdmTypeKind.Primitive && assertedType.TypeKind == EdmTypeKind.Primitive)
{
IEdmPrimitiveType primitiveExpressionType = expressionType as IEdmPrimitiveType;
IEdmPrimitiveType primitiveAssertedType = assertedType as IEdmPrimitiveType;
if (!primitiveExpressionType.PrimitiveKind.PromotesTo(primitiveAssertedType.PrimitiveKind))
{
discoveredErrors = new EdmError[] { new EdmError(location, EdmErrorCode.ExpressionPrimitiveKindNotValidForAssertedType, Edm.Strings.EdmModel_Validator_Semantic_ExpressionPrimitiveKindCannotPromoteToAssertedType(expressionType.ToTraceString(), assertedType.ToTraceString())) };
return false;
}
}
else
{
if (!expressionType.IsOrInheritsFrom(assertedType))
{
discoveredErrors = new EdmError[] { new EdmError(location, EdmErrorCode.ExpressionNotValidForTheAssertedType, Edm.Strings.EdmModel_Validator_Semantic_ExpressionNotValidForTheAssertedType) };
return false;
}
}
}
discoveredErrors = Enumerable.Empty<EdmError>();
return true;
}