C/C++教程

System.Data.SqlTypes.SqlNullValueException: 'Data is Null. This method or property cannot be ca

本文主要是介绍System.Data.SqlTypes.SqlNullValueException: 'Data is Null. This method or property cannot be ca,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
 

If you are trying to read some nullable data from the database, but your type is not nullable you can get this error.

If MyInt is nullable in the database and you have this entity:

public class MyEntity
{
    public int Id { get; set; }
    public int MyInt { get; set; }
}

You will get the exception: System.Data.SqlTypes.SqlNullValueException: 'Data is Null. This method or property cannot be called on Null values.'

To fix this, just change the type of your MyInt property to Nullable<int> or int?:

public class MyEntity
{
    public int Id { get; set; }
    public int? MyInt { get; set; }
}
这篇关于System.Data.SqlTypes.SqlNullValueException: 'Data is Null. This method or property cannot be ca的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!