blob: 5dc5a613eb59a3cf879262b2e5a245ac3e6c66b7 (
plain)
1
2
3
4
5
6
7
8
9
|
namespace CrupestApi.Commons.Crud;
/// <summary>
/// This will always represent null value in database.
/// </summary>
public class DbNullValue
{
public static DbNullValue Instance { get; } = new DbNullValue();
}
|