could not be set to a 'string' value. You must set this property to a non-null value of type

问题:could not be set to a‘string’ value. You must set this property to a non-null value of type ‘System.Guid’
在搜索资料的时候得知,产生这种问题的原因可能出现在两个地方:
(1)这个字段不能为空,检查是否设置为可空字段
(2)数据库中的表设置有问题。
解决:
我利用的是一张视图,在检查model中的字段设置时,是可以为空的,所以不是第一种原因,但是检查视图中时,发现这个字段也是uniqueidentifier 类型,原因发现最初的基表中该字段的类型为nvarchar类型,故出现错误。
在这篇文章中有相似的问题:
https://stackoverflow.com/questions/20947469/could-not-be-set-to-a-system-decimal-value-you-must-set-this-property-to-a-no

你可能感兴趣的:(SQL,JS,C#,报错,C#,linq,lambda)