我使用亚音速3.在我的情况下:
实体类:
public class Org: IActiveRecord
{
public string fieldA
{get;set;}
public string fieldB
{get;set;}
}
并在我的linq查询中:
var linqNodes = from o in DB.Orgs select new TreeNode{ id=o.fieldA,text=o.fieldB};
var nodes = linqNodes.ToList();
TreeNode类是我的树节点的自定义类。 节点返回记录的字段值为空。 我确信所有记录都有数据库中的数据。