将 LiveLinq 的 .AsLive() 与 Linq-2-SQL 和预先存在的 DBML 结合使用

发布于 2024-11-19 13:22:04 字数 440 浏览 3 评论 0 原文

我想知道如何将 LiveLinq 与 Linq-2-SQL 和预先存在的 DBML(在单独的 DLL 中)一起使用。我已经有一个 System.Data.Linq.DataContext

LiveLinq 可以在这里工作吗?我目前对使用扩展 .AsLive() 很感兴趣,但其他扩展也很有趣。似乎不支持 Linq-2-SQL。只有 ADO.Net 是。似乎没有人回答我在 forum 所以我正在向使用 C1 LiveLinq 的人寻求帮助/建议。

问候。

I’d like to know how to use LiveLinq with Linq-2-SQL and a pre-existing DBML (in a separate DLL). I already have a System.Data.Linq.DataContext

Can LiveLinq work here. I’m currently interested in using the extension .AsLive() but the other extensions are quite interesting as well. It seems that Linq-2-SQL is not supported. Only ADO.Net is. No one seems to answer the same question I asked at the forum so I'm seeking help/advise from someone using C1's LiveLinq.

Regards.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最美的太阳 2024-11-26 13:22:04

是的,LiveLinq 可以处理 LINQ2SQL 数据。基本上,它可以处理任何“可观察”或“可绑定”数据,以及任何可以绑定控件的数据。有一个扩展方法 .AsLive(IBindingList) (在 C1.LivqLinq.LiveViewExtensions 中)。因此,您可以将 .AsLive(this IBindingList) 应用于如下查询:

var query = (from p in db.Products where p.Category.CategoryName == “Beverages” select p);
IBindingList ibl = ((IListSource) 查询).GetList();
C1.LiveLinq.LiveViews.View liveView = ibl.AsLive(ibl);

这将创建一个实时视图((我没有检查代码是否有效,可能有拼写错误)。

您还可以以类似的方式将 .AsLive 应用于也实现 IListSource 的类 Table 和 EntitySet。

此响应来自这里给出:
http://our.componentone.com/groups/entity-framework/studio-for-entity-framework/forum/topic/using-with-linq-2-sql-and-a-pre-现有的 dbml-in-a-separate-dll/

Yes, LiveLinq can work with LINQ2SQL data. Basically, it can work with any “observable” or “bindable” data, with anything that you can bind controls to. There is an extension method .AsLive(IBindingList) (in C1.LivqLinq.LiveViewExtensions). So you can apply .AsLive(this IBindingList) to a query like this:

var query = (from p in db.Products where p.Category.CategoryName == “Beverages” select p);
IBindingList ibl = ((IListSource) query).GetList();
C1.LiveLinq.LiveViews.View liveView = ibl.AsLive(ibl);

That will create a live view ((I did not check that the code works, there may be typos).

You can also apply .AsLive in a similar way to classes Table and EntitySet that also implement IListSource.

This response was taken from the one given here:
http://our.componentone.com/groups/entity-framework/studio-for-entity-framework/forum/topic/using-with-linq-2-sql-and-a-pre-existing-dbml-in-a-separate-dll/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文