BLToolkit 自定义数据提供程序
有 BLToolkit 的自定义数据提供程序的示例吗?
我需要 MongoDB 提供程序和 InMemory 数据提供程序。例如,我正在从xml或文件中读取一些记录,并需要通过BLToolkit选择和查询来显示它们。
Is there any examples of custom data provider for BLToolkit?
I need MongoDB provider and InMemory data provider. For example, I am reading some records from xml or files, and need to show them through BLToolkit selections and queries.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在此处找到所提供的提供程序的当前实现
以及用于 C# 的官方 MongoDB 驱动程序此处。
编写完整的提供程序将变得相当复杂,因为 Bltoolkit 的 api 并不是真正围绕非关系数据管理设计的,但对于您的问题暗示的基本 CRUD 操作,这就足够了。
华泰
You can find the current implementations of the supplied providers here
and the official MongoDB Driver for C# here.
Writing a full provider will get fairly complicated as Bltoolkit's api isn't really designed around non-relational data management, but for the basic CRUD operations that your question implies, this will suffice.
HTH