访问 ADO.NET 元数据
我正在创建一个需要扩展 SQL 属性的应用程序。在同事的帮助下,这些属性已附加到我的 edmx 模型中。
我现在需要做的就是以某种方式将这些数据(可能放入表中?)提取到 WCF RIA 服务中,然后在 LightSwitch 中使用该服务。调试时,我可以看到我需要的元数据,但不确定如何提取它。
I am creating an application that requires extended SQL properties. With the help of a colleague those properties have been appended to my edmx model.
All I need to do now is somehow pull this data (maybe into a table?) in a WCF RIA service which will then be used within LightSwitch. When debugging I can see the metadata I need, but am unsure of how to extract this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了一个解决方法(虽然不是特别优雅),即使用 XML 查找我想要的扩展元数据并将其返回到一个简单的 POCO 表。让我知道是否有更好的方法。
干杯
I have found a workaround for this(although not particulary elegant) by using XML to find the extended metadata I want and returning that to a simple POCO table. Let me know if theres a better way.
Cheers