亚音速 3 + LINQ 错误
Subsonic 3.0.0.3 的一个奇怪的错误
使用 - 作为示例 - AdventureWorksLT DB
当我运行此代码时
,我得到的 gname 为 null (尽管 name 的值正常) w 是 0 而不是第一行的值 [如果我将选择新的 MyData 更改为仅选择 MyData - 它工作正常]
class Program {
static void Main(string[] args) {
var q = from g in Product.All()
select new MyData{
gname = g.Name,
name = g.Name,
w = g.Weight.Value
};
var list00 = q.Take(1).ToList();
Console.WriteLine(list00[0].gname);
}
}
public class MyData {
public string gname { get; set; }
public string name { get; set; }
public decimal w { get; set; }
}
了什么问题
谢谢迈克
任何想法出
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为目前存在一些投影错误: http://groups.google.com/group/subsonicproject/browse_thread/thread/2b569539b7f67a34/6f703e0e4ce15141?lnk=gst&q=projection#6f703e0e4ce15141
I think there's currently some bugs with projection: http://groups.google.com/group/subsonicproject/browse_thread/thread/2b569539b7f67a34/6f703e0e4ce15141?lnk=gst&q=projection#6f703e0e4ce15141
是的,我认为当亚音速尝试投影到新类型类(非匿名和非源类)时存在错误。
如果您这样做
或如果您这样做
作为解决方案,请分叉我的存储库(http://github.com/funky81/SubSonic-3.0/commit/aa7a9c1b564b2667db7fbd41e09ab72f5d58dcdb)。您可以查看我的源代码并将其应用到您的亚音速代码中。
Yes, i think there's a bug when subsonic try to project into new typed class (non anonymous and non source class).
Your query will work fine if you do like this
or if you do like this
As a solution, please fork my repository (http://github.com/funky81/SubSonic-3.0/commit/aa7a9c1b564b2667db7fbd41e09ab72f5d58dcdb). You can see my source code and apply it into your subsonic code.