-
Notifications
You must be signed in to change notification settings - Fork 56
Open
Labels
Description
public class EntityDataService : IEntityDataService where TEntity : class, new()
{
...
public virtual async Task SqlCommand(string SqlString)
{
await DbContext.Database.ExecuteSqlCommandAsync(SqlString);
}
}
///////////////////////////////////////////////////////////////////////////////
public interface IEntityDataService where TEntity : class, new()
{
...
Task SqlCommand(string SqlString);
}
///Please consider to add raw sql command execution.
AshrafAlam and kipergil