Skip to content

Commit

Permalink
added example for nullable deserialization
Browse files Browse the repository at this point in the history
  • Loading branch information
morrisjdev committed Mar 18, 2020
1 parent b0fc2a1 commit 8a338cf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Example/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ static void Main(string[] args)
User us = new User()
{
Name = "Morris Janatzek",
Username = ""
Username = "",
Type = User.UserType.Manager,
Test = 2
};

db.Users.Add(us);
Expand Down

0 comments on commit 8a338cf

Please sign in to comment.