StringTemplate 无法呈现 LINQ to SQL 类的属性
我使用 vs2008 的 GUI 工具生成一些 LINQ to SQL 类,我的问题是 StringTemplate 无法访问
$persons:{
<li>$it.name$</li>
}$
它打印的那些模型的属性:
<li></li>
<li></li>
<li></li>
name 是 Person 模型的公共属性。如果我自己创建一个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.namelt;/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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
设计者根据编译器生成一个普通的类,代码只是自动生成的。我怀疑您还有其他问题 - 也许您没有包含正确的引用/命名空间,或者您有命名空间冲突并且选择了错误的类。
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.
这不是正确的解决方案,但我遇到了同样的问题,并且使用
$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 thename
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 atASTExpr.cs:RawGetObjectProperty
around the call toGetPropertyValueByName
(it usesmethodSuffix
, notpropertyName
).