Dapper 매개 변수 화 조회, 수필
849 단어 수필집
이러한 조회: id in (1, 2, 3, 4), code in ('a', 'b', 'c') ,전 참: List id ,List code .실제 열 거 는 다음 과 같다.
public List GetChildListByIndexIds(int selfId, List indexIds)
{
DynamicParameters Parameters = new DynamicParameters();
Parameters.Add("SelfId", selfId);
Parameters.Add("indexIds", indexIds);
string sql = @"SELECT a.id,a.IndexId,a.ChildId,a.Indexvalue_Code,a.Indexvalue
FROM [dbo].[Evaluation_SelfAssessment_details_Child] a WHERE a.SelfId=@SelfId AND a.IndexId IN @indexIds ";
return _Respository.GetListWithSql(sql, Parameters);
}