示例#1
0
 public string GetUserName(int UserId)
 {
     return(_ormUsers.Scalar <string>((D, F) => D(F.UserName), w => w.UserId == UserId));
 }