aboutsummaryrefslogtreecommitdiff
path: root/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/ParamMap.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-12-11 11:12:29 +0800
committercrupest <crupest@outlook.com>2022-12-20 20:32:53 +0800
commit8243498d2a201616239c6f4c48fa68737175978c (patch)
tree3dbe79a875e9f7d602cba6e551c69193cadaf1ea /docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/ParamMap.cs
parentbd523a6a7cac09fe580223c3d75e41e1e100f603 (diff)
downloadcrupest-8243498d2a201616239c6f4c48fa68737175978c.tar.gz
crupest-8243498d2a201616239c6f4c48fa68737175978c.tar.bz2
crupest-8243498d2a201616239c6f4c48fa68737175978c.zip
Develop secret api. v27
Diffstat (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/ParamMap.cs')
-rw-r--r--docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/ParamMap.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/ParamMap.cs b/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/ParamMap.cs
index 4b253b7..fe8d2a0 100644
--- a/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/ParamMap.cs
+++ b/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/ParamMap.cs
@@ -3,6 +3,9 @@ using System.Diagnostics;
namespace CrupestApi.Commons.Crud;
+/// <summary>
+/// Null value will be thrown. Please use <see cref="DbNullValue.Instance"/>.
+/// </summary>
public record ParamInfo(string Name, object? Value, string? ColumnName = null);
public class ParamList : List<ParamInfo>