数据绑定 WPF 存储库和模型

发布于 2024-12-17 08:12:00 字数 146 浏览 0 评论 0原文

我有一个 ADO.Net 实体数据模型,其中包含一个名为 DJ 的表。

我想将数据库的名称列绑定到 WPF 应用程序中的列表框。我的问题是,我不想在代码隐藏文件中包含任何代码。

我需要一个模型类吗?我该如何处理这个问题?

I´ve got a ADO.Net Entity Data Model that contains a table called DJ.

I want to bind the Name-column of the database to a listbox in my WPF application. My problem is, that I don´t want any code in the code-behind file.

Do I need a Model-Class for that? How can I manage this?

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

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

发布评论

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

评论(1

最单纯的乌龟 2024-12-24 08:12:00

您不需要后台代码,但强烈建议使用 ViewModel。你的视图不应该直接听模型。一开始它可能看起来很简单,但是随着应用程序的增长,您将需要进行验证、聚合、隐藏某些模型部分等......并且这应该是您的 ViewModel 的一部分,而不是您的模型或视图的一部分。

You don't need code behind, but it is highly recommended to have a ViewModel. Your view should not listen to the model directly. It may seem simple in the beginning, but as your application grows, you will need to do validation, aggregation, hiding some model part ect... and that should be part of your ViewModel, not your Model or view.

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