mssql 사용하구요,
entity랑 매핑은 해둔상태로
controller 에서 쿼리를 적으려는데요,
List<string> str_code = new List<string>();
id = ViewBag.Code;
if(){
str_code = (from y in 테이블명.Query()
where y.code == '000' && y.date == id
select y.str_code).ToList();
}
테이블에서 str_code 와 str_name 두개를 셀렉트를 하고싶은데, 어떻게 해야하나요..