string.Join()用法


string strTripID = string.Join(",", model.TripList.Select(s => "'" + s.TripID + "'"));   

var togetherList = itogetheremployeeservice.GetTogetherEmployee(strTripID);

    public List<T_TOGETHEREMPLOYEE> GetTogetherEmployee(string bizID)
    {
        var tmpList = Filter(item => bizID.Contains(item.BizID)).ToList();
        return tmpList;
    }




string strTripID = string.Join(",", returnValue.TripList.Select(s => "'" + s.TripID + "'"));
string sqlStr = " select * from T_TOGETHEREMPLOYEE where BizID in (" + strTripID + ") ";
var togetherList = AppBaseServiceHelper.GetList<TOGETHEREMPLOYEEModel>(sqlStr, null);
原文地址:https://www.cnblogs.com/imtudou/p/11251654.html