コード例 #1
0
 public void DeleteUser(string pUserId)
 {
     using (touchdbEntities context = new touchdbEntities())
     {
         context.sp_UserDelete(Guid.Parse(pUserId));
     }
 }