在编译时检查 ObjectDataSource 的 TypeName
假设我有一个页面,里面有一个 ObjectDataSource(简称 ODS),它为 GridView 提供绑定。
如此处所述,ODS 执行所有与字符串的绑定,因此如果我更改类的名称,由 ODS 的 TypeName 属性引用,我不会收到任何编译时错误,只会收到运行时错误。
有谁知道如何克服这个问题?
提前致谢。
Suppose I have page with an ObjectDataSource (ODS for short) inside, which provides bindings for a GridView.
As described here, ODS does all bindings with Strings, so if I change the name of a class, which is referenced by TypeName property of an ODS, I won't get any compile time errors, only runtime ones.
Does anyone has any idea how to overcome this problem?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在代码中而不是在您的 aspx 中构建一个 ObjectDataSource...
build up an ObjectDataSource in code instead of in your aspx....
对于简单的情况,使用“AutoGenerateColumns”
fixes可以避免该问题。但是,我知道这可能是对实际问题的不完整答案。我很好奇其他人提供了什么解决方案。我希望或怀疑有一个解决方案,您可以使用解释这些属性应如何绑定在网格中的属性来装饰类的属性。
编辑:“避免”似乎比“修复”更合适:)
For simple cases using "AutoGenerateColumns"
fixesavoids that problem.However, I'm aware that's probably an incomplete answer to the actual question. I'm curious to see what solutions others offer. I'd hope or suspect a solution where you'd decorate properties of classes with attributes explaining how those properties should be bound in a grid.
Edit: "avoids" seemed more appropriate than "fixes" :)