diff options
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) |