日期:2014-05-18 浏览次数:20442 次
public IList<DataInfo> GetListById { string sql = @"select * from message where (targetid=:ID or sourceid=:ID)"; IList<DataInfo> list = _session.CreateQuery(sql).Set<int>("ID ", ID).List<DataInfo>(); if (list != null && list.Count > 0) { return list[0]; //这里提示“无法将类型DataInfo隐式转换为IList<DataInfo>,存在一个显式转换” } return null; }