aboutsummaryrefslogtreecommitdiff
path: root/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/ColumnInfo.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-12-11 12:42:21 +0800
committercrupest <crupest@outlook.com>2022-12-20 20:32:53 +0800
commit137ddf2386fb17133b081cb6f1d5e8095c5ec2c6 (patch)
tree8e3af035c27ce874c4c94161e3300826f566786f /docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/ColumnInfo.cs
parent8243498d2a201616239c6f4c48fa68737175978c (diff)
downloadcrupest-137ddf2386fb17133b081cb6f1d5e8095c5ec2c6.tar.gz
crupest-137ddf2386fb17133b081cb6f1d5e8095c5ec2c6.tar.bz2
crupest-137ddf2386fb17133b081cb6f1d5e8095c5ec2c6.zip
Develop secret api. v28
Diffstat (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/ColumnInfo.cs')
-rw-r--r--docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/ColumnInfo.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/ColumnInfo.cs b/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/ColumnInfo.cs
index 4a594bb..9a6b549 100644
--- a/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/ColumnInfo.cs
+++ b/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/ColumnInfo.cs
@@ -18,10 +18,11 @@ public class ColumnHooks
/// <summary>Called after SELECT. Please use multicast if you want to customize it because there are many default behavior in it.</summary
public ColumnHookAction AfterSelect;
- /// <summary>Called before INSERT. Please use multicast if you want to customize it because there are many default behavior in it.</summary
+ /// <summary>Called before INSERT. Please use multicast if you want to customize it because there are many default behavior in it.</summary>
public ColumnHookAction BeforeInsert;
/// <summary>Called before UPDATE. Please use multicast if you want to customize it because there are many default behavior in it.</summary
+ /// <remarks>Set value to null to delete the update item so it will not change. Set value to <see cref="DbNullValue"/> to update the column to NULL.</remarks>
public ColumnHookAction BeforeUpdate;
}