public User Get(int id) { List <User> userList = _db.Query <User>("SELECT * from User where Id =" + id); return(userList.FirstOrDefault()); }