I have a class that maps to a table using LINQ but not ORM. It works with all the strings in the class and displays them in the view. However, if I add any Int32, Int16 or DateTime I get the error
The null value cannot be assigned to a member with type.
With the code below:
[Table(Name = "RegisterBoo")]
public class RegistrationBoo
{
[Column] public string BooNum { get; set; }
//[Column(CanBeNull = true)] public Int32 ServiceStatusId { get; set; }
If I uncomment the commented out line the code fails in the controller at:
return View(BooRepository.Registrations.ToList());
with:
The null value cannot be assigned to a member with type Int32
Most of the columns in the database can be NULL and this is something that I cannot change because I am not DBA. Why does CanBeNull not work? How do I solve this error? I also tried using Nullable<> and using some of the ideas outlined in the forums.
Int32?,DateTime?, etc. OrNullable<Int32>-- EDIT nvm, looks like you have. – Brad Christie Dec 23 '11 at 15:52ints andDateTimes nullable should have worked. What was the problem when you tried that? – ChrisF♦ Dec 23 '11 at 15:53