StringTemplate 无法呈现 LINQ to SQL 类的属性

发布于 2024-08-18 11:18:44 字数 365 浏览 6 评论 0原文

我使用 vs2008 的 GUI 工具生成一些 LINQ to SQL 类,我的问题是 StringTemplate 无法访问

$persons:{
<li>$it.name$</li>
}$

它打印的那些模型的属性:

<li></li>
<li></li>
<li></li>

namePerson 模型的公共属性。如果我自己创建一个person类,并且属性相同,StringTemplate就可以获取到。

i use GUI tool of vs2008 to generate some LINQ to SQL class, my problem is StringTemplate can not reach attributes of those model

$persons:{
<li>$it.name
lt;/li>
}$

it printed:

<li></li>
<li></li>
<li></li>

name is public property of Person model. If i create a person class by myself, and the same attributes, StringTemplate can get it.

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

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

发布评论

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

评论(2

祁梦 2024-08-25 11:18:44

设计者根据编译器生成一个普通的类,代码只是自动生成的。我怀疑您还有其他问题 - 也许您没有包含正确的引用/命名空间,或者您有命名空间冲突并且选择了错误的类。

The designer produces a normal class with respect to the compiler, the code is simply autogenerated. I suspect that you have some other issue going on -- perhaps you haven't included the correct references/namespaces or you have a namespace conflict and it's picking the wrong class.

朦胧时间 2024-08-25 11:18:44

这不是正确的解决方案,但我遇到了同样的问题,并且使用 $it._name$ 对我有用。不过,这是进入私人支持领域,所以不是一个好主意。尽管如此,这意味着 StringTemplate 可以找到该字段,但不能找到与其一起使用的 name 属性。奇怪的。

编辑:

明白了。 StringTemplate 假定属性以大写字母开头。因此,如果您的属性名为 Name ,它就会起作用。您可以重命名您的属性或修复 StringTemplate 源代码中的有问题的代码位:
ASTExpr.cs:RawGetObjectProperty 围绕对 GetPropertyValueByName 的调用(它使用 methodSuffix,而不是 propertyName)。

This is not the correct solution, but I am having the same trouble, and using $it._name$ works for me. This is accessing the private backing field though, so is not a good idea. Still, it means that StringTemplate can find that field, but not the name property to go with it. Odd.

Edit:

Got it. StringTemplate assumes that properties start with an uppercase letter. so if your property was called Name it would work. You could rename your properties or fix the offending bit of code in StringTemplate's source at
ASTExpr.cs:RawGetObjectProperty around the call to GetPropertyValueByName (it uses methodSuffix, not propertyName).

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