diff options
author | crupest <crupest@outlook.com> | 2022-12-11 16:51:53 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-12-20 20:32:53 +0800 |
commit | 24d42e5eb284267966aee8bb687710bfcbc1a255 (patch) | |
tree | 8da3d035cdc2e3827841b0aaae0df4fb0c09cfb1 /docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/CrudService.cs | |
parent | 137ddf2386fb17133b081cb6f1d5e8095c5ec2c6 (diff) | |
download | crupest-24d42e5eb284267966aee8bb687710bfcbc1a255.tar.gz crupest-24d42e5eb284267966aee8bb687710bfcbc1a255.tar.bz2 crupest-24d42e5eb284267966aee8bb687710bfcbc1a255.zip |
Develop secret api. v29
Diffstat (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/CrudService.cs')
-rw-r--r-- | docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/CrudService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/CrudService.cs b/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/CrudService.cs index af6a8d5..9400a7b 100644 --- a/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/CrudService.cs +++ b/docker/crupest-api/CrupestApi/CrupestApi.Commons/Crud/CrudService.cs @@ -63,7 +63,7 @@ public class CrudService<TEntity> : IDisposable where TEntity : class // Return the key. public object Insert(TEntity entity) { - return _table.Insert(_dbConnection, _table.GenerateInsertClauseFromEntity(entity)); + return _table.Insert(_dbConnection, ); } public int Update(IUpdateClause updateClause, IWhereClause? filter) |