假设我有一个非常简单的类型,我想使用 .NET C# webapi 控制器在 OData 提要上公开它作为集合的一部分:
public class Image
{
/// <summary>
/// Get the name of the image.
/// </summary>
public string Name { get; set; }
public int Id { get; set; }
internal System.IO.Stream GetProperty(string p)
{
throw new System.NotImplementedException();
}
private Dictionary<string, string> propBag = new Dictionary<string, string>();
internal string GetIt(string p)
{
return propBag[p];
}
}
在我的 WebApiConfig.cs 我做标准的事情来配置它:
ODataModelBuilder modelBuilder = new ODataConventionModelBuilder();
var imagesES = modelBuilder.EntitySet<Image>("Images");
根据 Excel,这是一个很棒的提要。但在我的集合中,该 propBag 包含其他数据的有限列表(例如“a”、“b”和“c”或类似数据)。我希望它们作为我的 OData 提要中的额外属性。我的第一个想法是在配置发生时尝试这样的事情:
ODataModelBuilder modelBuilder = new ODataConventionModelBuilder();
var imagesES = modelBuilder.EntitySet<Image>("Images");
images.EntityType.Property(c => c.GetIt("a"))
这完全失败了,因为这实际上是传入的表达式树,而不是 lambda 函数,并且此方法尝试解析它。并期望取消引用属性。
我应该往这里走什么方向?对于某些情况:我正在尝试使用单个简单的平面对象创建一个 odata 只读源。按照网上找到的教程,让简单版本工作很容易。
更新:
下面的cellik 为我指明了一个方向。我只是尽可能地跟着它走,而且我非常接近。
首先,我创建了一个属性信息类来表示动态属性:
public class LookupInfoProperty : PropertyInfo
{
private Image _image;
private string _propName;
public LookupInfoProperty(string pname)
{
_propName = pname;
}
public override PropertyAttributes Attributes
{
get { throw new NotImplementedException(); }
}
public override bool CanRead
{
get { return true; }
}
public override bool CanWrite
{
get { return false; }
}
public override MethodInfo[] GetAccessors(bool nonPublic)
{
throw new NotImplementedException();
}
public override MethodInfo GetGetMethod(bool nonPublic)
{
throw new NotImplementedException();
}
public override ParameterInfo[] GetIndexParameters()
{
throw new NotImplementedException();
}
public override MethodInfo GetSetMethod(bool nonPublic)
{
throw new NotImplementedException();
}
public override object GetValue(object obj, BindingFlags invokeAttr, Binder binder, object[] index, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
public override Type PropertyType
{
get { return typeof(string); }
}
public override void SetValue(object obj, object value, BindingFlags invokeAttr, Binder binder, object[] index, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
public override Type DeclaringType
{
get { throw new NotImplementedException(); }
}
public override object[] GetCustomAttributes(Type attributeType, bool inherit)
{
throw new NotImplementedException();
}
public override object[] GetCustomAttributes(bool inherit)
{
return new object[0];
}
public override bool IsDefined(Type attributeType, bool inherit)
{
throw new NotImplementedException();
}
public override string Name
{
get { return _propName; }
}
public override Type ReflectedType
{
get { return typeof(Image); }
}
}
如您所见,需要实现的方法很少。然后我创建了一个自定义序列化程序:
public class CustomSerializerProvider : DefaultODataSerializerProvider
{
public override ODataEdmTypeSerializer CreateEdmTypeSerializer(IEdmTypeReference edmType)
{
if (edmType.IsEntity())
{
// entity type serializer
return new CustomEntityTypeSerializer(edmType.AsEntity(), this);
}
return base.CreateEdmTypeSerializer(edmType);
}
}
public class CustomEntityTypeSerializer : ODataEntityTypeSerializer
{
public CustomEntityTypeSerializer(IEdmEntityTypeReference edmType, ODataSerializerProvider serializerProvider)
: base(edmType, serializerProvider)
{
}
/// <summary>
/// If we are looking at the proper type, try to do a prop bag lookup first.
/// </summary>
/// <param name="structuralProperty"></param>
/// <param name="entityInstanceContext"></param>
/// <returns></returns>
public override ODataProperty CreateStructuralProperty(IEdmStructuralProperty structuralProperty, EntityInstanceContext entityInstanceContext)
{
if ((structuralProperty.DeclaringType as IEdmEntityType).Name == "Image")
{
var r = (entityInstanceContext.EntityInstance as Image).GetIt(structuralProperty.Name);
if (r != null)
return new ODataProperty() { Name = structuralProperty.Name, Value = r };
}
return base.CreateStructuralProperty(structuralProperty, entityInstanceContext);
}
}
在我的 WebApiConfig 注册方法中配置了哪些:
config.Formatters.InsertRange(0, ODataMediaTypeFormatters.Create(new CustomSerializerProvider(), new DefaultODataDeserializerProvider()));
最后,我创建了 Image 类,并为其添加了“a”属性:
ODataModelBuilder modelBuilder = new ODataConventionModelBuilder();
var imagesES = modelBuilder.EntitySet<Image>("Images");
var iST = modelBuilder.StructuralTypes.Where(t => t.Name == "Image").FirstOrDefault();
iST.AddProperty(new LookupInfoProperty("a"));
Microsoft.Data.Edm.IEdmModel model = modelBuilder.GetEdmModel();
config.Routes.MapODataRoute("ODataRoute", "odata", model);
只有一个问题 - 在大多数来自 Excel 等客户端的测试查询中,EntityInstance 为空。事实上,它是一个折旧的属性 - 您将使用 EdmObject 代替。这确实有对实际对象实例的引用。但是,在当前的夜间构建中(您必须拥有它才能使任何这些工作),EdmObject 的访问是内部的 - 因此不能使用它。
更新 2:在asp CodePlex 站点上有一些关于此的最小文档。
非常接近!