aboutsummaryrefslogtreecommitdiff
path: root/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/DbNullValue.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-12-11 10:43:56 +0800
committercrupest <crupest@outlook.com>2022-12-20 20:32:53 +0800
commit2c7e3b1c00dc13ab3647d960a79d1d7b5ba6c362 (patch)
tree8dcc9fd28c2b7281eb40fa143e96c70518aeefd8 /docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/DbNullValue.cs
parentc2e7d3c222fcbfcce9c9a0b44dd7e82742e9cd1f (diff)
downloadcrupest-2c7e3b1c00dc13ab3647d960a79d1d7b5ba6c362.tar.gz
crupest-2c7e3b1c00dc13ab3647d960a79d1d7b5ba6c362.tar.bz2
crupest-2c7e3b1c00dc13ab3647d960a79d1d7b5ba6c362.zip
Develop secret api. v26
Diffstat (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/DbNullValue.cs')
-rw-r--r--docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/DbNullValue.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/DbNullValue.cs b/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/DbNullValue.cs
new file mode 100644
index 0000000..5dc5a61
--- /dev/null
+++ b/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/DbNullValue.cs
@@ -0,0 +1,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();
+} \ No newline at end of file