Skip to content

Commit 18bf438

Browse files
committed
fix Remove IDataContract
1 parent 7e65118 commit 18bf438

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

src/Interface/IQueryGenerator.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ public interface IQueryGenerator : IDisposable
88
/// <summary>
99
/// Generates a SELECT query for retrieving data from a database table.
1010
/// </summary>
11-
/// <typeparam name="T">The type of entity that implements IDataContract.</typeparam>
1211
/// <param name="tableName">The name of the database table.</param>
1312
/// <param name="ListOfColumns">The list of columns to be selected.</param>
1413
/// <param name="schemaName">The schema name of the database table.</param>
@@ -18,7 +17,6 @@ public interface IQueryGenerator : IDisposable
1817
/// <summary>
1918
/// Generates an UPDATE query for updating data in a database table.
2019
/// </summary>
21-
/// <typeparam name="T">The type of entity that implements IDataContract.</typeparam>
2220
/// <param name="DataContract">The entity with the updated data.</param>
2321
/// <param name="keyColumns">The list of key columns used for updating.</param>
2422
/// <param name="excludedColumns">The list of columns to be excluded from the update.</param>
@@ -29,7 +27,6 @@ public interface IQueryGenerator : IDisposable
2927
/// <summary>
3028
/// Generates a DELETE query for deleting data from a database table.
3129
/// </summary>
32-
/// <typeparam name="T">The type of entity that implements IDataContract.</typeparam>
3330
/// <param name="entity">The entity representing the data to be deleted.</param>
3431
/// <param name="keyColumns">The list of key columns used for deletion.</param>
3532
/// <returns>A string representing the generated DELETE query.</returns>
@@ -38,7 +35,6 @@ public interface IQueryGenerator : IDisposable
3835
/// <summary>
3936
/// Generates an INSERT query for inserting data into a database table.
4037
/// </summary>
41-
/// <typeparam name="T">The type of entity that implements IDataContract.</typeparam>
4238
/// <param name="entity">The entity representing the data to be inserted.</param>
4339
/// <param name="keyColumns">The list of key columns used for insertion.</param>
4440
/// <param name="excludedColumns">The list of columns to be excluded from the insertion.</param>
@@ -55,7 +51,6 @@ public interface IQueryGenerator : IDisposable
5551
/// <summary>
5652
/// Gets a condition for use in a SQL WHERE clause based on the entity and key columns.
5753
/// </summary>
58-
/// <typeparam name="T">The type of entity that implements IDataContract.</typeparam>
5954
/// <param name="entity">The entity for which the condition is generated.</param>
6055
/// <param name="keyColumns">The list of key columns used to create the condition.</param>
6156
/// <returns>A string representing the generated condition for a SQL WHERE clause.</returns>

0 commit comments

Comments
 (0)