예제 #1
0
 public List <sp_GetUserMatchs_Result> GetUserMatch(string pUserId)
 {
     using (touchdbEntities context = new touchdbEntities())
     {
         var pUserMatch = context.sp_GetUserMatchs(Guid.Parse(pUserId)).ToList();
         return(pUserMatch);
     }
 }