如果对象数据源未正确连接,如何获得编译失败?

发布于 2024-08-25 19:29:40 字数 164 浏览 1 评论 0原文

我有一个大型棕色字段 Web 表单应用程序,它在各处都使用 ObjectDatasource 控件,这使得重构比应有的更加困难。

如果重命名对象或方法会导致 ObjectDataSource 不再工作,是否有办法获得编译时失败?在 MVC 中有编译视图的概念,Webform 是否有与此类似的概念?

I have a large brown field webforms app that uses ObjectDatasource controls all over the place, which makes refactoring more difficult than it should be.

Is there a way to get a comile-time failures if an object or method is renamed which would cause the ObjectDataSource no longer work? In MVC there is the notion of compiling views, is there a parallel to this for webforms?

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

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

发布评论

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

评论(1

回心转意 2024-09-01 19:29:40

没有简单的方法,不。 .ASPX 或 .ASCX 中定义的任何内容都是在运行时创建的。您唯一能做的就是尝试访问代码隐藏中的对象(假设是一个 Web 应用程序项目)并确保该项目编译正常。但这只能告诉您它是否在 .design 代码隐藏文件中正确定义;它不会帮助您在 .ASPX 或 .ASCX 文件中追踪对它的任何引用。

There is no easy way, no. Anything defined in .ASPX or .ASCX is created at runtime. The only thing you could do is attempt to access the object in codebehind (assuming a Web Application Project) and make sure the project compiles OK. But that only tells you if it's defined correctly in the .design code-behind file; it won't help you track down any references to it in .ASPX or .ASCX files.

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