0
닷넷 코어에 UseInMemoryDatabase
을 사용하여 다음 웹 API 코드를 테스트하고 있습니다.SqlNullValueException : 데이터가 Null입니다. 이 메서드 또는 속성을 Null 값에서 호출 할 수 없습니까?
컨트롤러
[HttpGet("{id}", Name = "GetPasscode")]
public IActionResult GetPasscode(SqlBytes id)
{
if (id == null)
{
throw new ArgumentException("Invalid address");
}
var p = _context.AddressPasscodes.FirstOrDefault(a => a.Address == id);
if (p == null)
{
p = new AddressPasscode{ Address = id, Passcode = 123 };
_context.AddressPasscodes.Add(p);
_context.SaveChanges();
};
return new ObjectResult(p);
}
모델 그러나
public class AddressPasscode
{
public SqlBytes Address { get; set; }
public int Passcode { get; set; }
}
, 그것은 다음과 같은 런타임 예외 테스트있어 http://localhost:5000/api/passcode/1
SqlNullValueException: Data is Null. This method or property cannot be called on Null values.
System.Data.SqlTypes.SqlBytes.get_Length()
SqlNullValueException: Data is Null. This method or property cannot be called on Null values. System.Data.SqlTypes.SqlBytes.get_Length() Microsoft.Extensions.Internal.PropertyHelper.CallNullSafePropertyGetter(Func getter, object target) Microsoft.AspNetCore.Mvc.Internal.DefaultComplexObjectValidationStrategy+Enumerator.GetModel(object container, ModelMetadata property) Microsoft.AspNetCore.Mvc.Internal.DefaultComplexObjectValidationStrategy+Enumerator+c__DisplayClass10_0.b__1() Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationEntry.get_Model() Microsoft.AspNetCore.Mvc.ModelBinding.Validation.ValidationVisitor.VisitChildren(IValidationStrategy strategy)
나는 p가 null이라고 생각합니다.이'if (p! = null && p.Passcode == 0)' –