本文整理汇总了C#中IEdmModel.GetTypeMappingCache方法的典型用法代码示例。如果您正苦于以下问题:C# IEdmModel.GetTypeMappingCache方法的具体用法?C# IEdmModel.GetTypeMappingCache怎么用?C# IEdmModel.GetTypeMappingCache使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IEdmModel
的用法示例。
在下文中一共展示了IEdmModel.GetTypeMappingCache方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetODataDeserializer
/// <inheritdoc />
public override ODataDeserializer GetODataDeserializer(IEdmModel model, Type type, HttpRequestMessage request)
{
if (type == null)
{
throw Error.ArgumentNull("type");
}
if (model == null)
{
throw Error.ArgumentNull("model");
}
if (type == typeof(Uri))
{
return _entityReferenceLinkDeserializer;
}
if (type == typeof(ODataActionParameters) || type == typeof(ODataUntypedActionParameters))
{
return _actionPayloadDeserializer;
}
ClrTypeCache typeMappingCache = model.GetTypeMappingCache();
IEdmTypeReference edmType = typeMappingCache.GetEdmType(type, model);
if (edmType == null)
{
return null;
}
else
{
return GetEdmTypeDeserializer(edmType);
}
}
示例2: GetODataPayloadSerializer
/// <inheritdoc />
public override ODataSerializer GetODataPayloadSerializer(IEdmModel model, Type type, HttpRequestMessage request)
{
if (model == null)
{
throw Error.ArgumentNull("model");
}
if (type == null)
{
throw Error.ArgumentNull("type");
}
if (request == null)
{
throw Error.ArgumentNull("request");
}
// handle the special types.
if (type == typeof(ODataServiceDocument))
{
return _workspaceSerializer;
}
else if (type == typeof(Uri) || type == typeof(ODataEntityReferenceLink))
{
return _entityReferenceLinkSerializer;
}
else if (typeof(IEnumerable<Uri>).IsAssignableFrom(type) || type == typeof(ODataEntityReferenceLinks))
{
return _entityReferenceLinksSerializer;
}
else if (type == typeof(ODataError) || type == typeof(HttpError))
{
return _errorSerializer;
}
else if (typeof(IEdmModel).IsAssignableFrom(type))
{
return _metadataSerializer;
}
// if it is not a special type, assume it has a corresponding EdmType.
ClrTypeCache typeMappingCache = model.GetTypeMappingCache();
IEdmTypeReference edmType = typeMappingCache.GetEdmType(type, model);
if (edmType != null)
{
if ((edmType.IsPrimitive() || edmType.IsEnum()) && ODataRawValueMediaTypeMapping.IsRawValueRequest(request))
{
return _rawValueSerializer;
}
else
{
return GetEdmTypeSerializer(edmType);
}
}
else
{
return null;
}
}