我尝试使用AutoMapper进行以下操作
CreateMap<Guid, string>().ConvertUsing(g => g.ToString("N"));
我收到以下错误消息
Message: System.NotSupportedException : ToString of type System.Object is not supported in the expression tree {document}{_id}.ToString().
有人知道为什么吗?