我们正在尝试使用 ReflectionProvider 向我们的 OData 服务添加一个字符串列表:
[DataServiceKey("ID")]
Public class Project
public IEnumerable<Picture> Images { get; set; }
// Picture is an EF entity and everything works
public IEnumerable<string> Tags { get; set; }
// Same situation here, only strings -- service fails to start!
}
我们错过了什么吗?我们可以在 Entity Framework 中创建一个新实体以仅包含一个字符串属性,但这似乎对于仅存储一个字符串来说有点过头了。