List<t_phone_os> list = DB.Context.From<t_phone_os>() .Select(t_phone_os._.All, t_phone_brand._.Name, t_phone_series._.Name) .LeftJoin<t_phone_brand>((a, b) =>a.Bid==b.Id) .LeftJoin<t_phone_series>((a, b) => a.Sid == b.Id) .ToList();
添加回答
举报
0/150
提交
取消