cannot convert from 'System.Guid?' to 'System.Guid'

前端 未结 4 1566
隐瞒了意图╮
隐瞒了意图╮ 2021-01-03 22:01

Does anyone know how to deal with this error?

cannot convert from \'System.Guid?\' to \'System.Guid\'
4条回答
  •  爱一瞬间的悲伤
    2021-01-03 22:59

    cannot convert from 'System.Guid?' to 'System.Guid'

    you are trying to save type System.Guid? to a type system.Guid inside your model you can edit System.Guid? to System.Guid by removing the question mark.

    or RCIX answer above

提交回复
热议问题