Fix GraphQL Implementation and also UI Playground and add supports for Oracle Provider using EF Core ...
This commit is contained in:
@@ -10,10 +10,24 @@ namespace xDataService.Interfaces
|
||||
public interface IXBaseDbSeeder<TEntity, TKey>
|
||||
where TEntity : XBaseEntity<TKey>
|
||||
{
|
||||
/// <summary>
|
||||
/// Holds Entity Name ...
|
||||
/// </summary>
|
||||
string Entity { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Holds Database Name ...
|
||||
/// </summary>
|
||||
string Database { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Repository Service for Data Manipulation ...
|
||||
/// </summary>
|
||||
IXBaseRepository<TEntity, TKey> Repository { get; }
|
||||
|
||||
/// <summary>
|
||||
/// DataServiceConfiguration ...
|
||||
/// </summary>
|
||||
XDataServiceConfiguration DataServiceConfiguration { get; }
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user