2017-12-14 12 views
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) 
+0

나는 p가 null이라고 생각합니다.이'if (p! = null && p.Passcode == 0)' –

답변

0

제 생각에는 매개 변수를 SqlBytes으로 가져올 수 없습니다. 어쩌면 string으로 입력하고 SqlBytes 유형으로 변환 할 수 있습니다.

[HttpGet("{id}", Name = "GetPasscode")] 
public int GetPasscode(string id) 
{ 
    var sqlBytes = new SqlBytes(Encoding.UTF8.GetBytes(id)); 
    var p = _context.AddressPasscodes.FirstOrDefault(a => a.Address == sqlBytes); 
    if (p.Passcode == 0) 
    { 
     _context.AddressPasscodes.Add(new AddressPasscode{ Address = sqlBytes, Passcode = 123 }); 
     _context.SaveChanges(); 
    }; 
    return p.Passcode; 
}