eisk.webapi icon indicating copy to clipboard operation
eisk.webapi copied to clipboard

Raw SQL command excusion

Open hasan-ceo opened this issue 6 years ago • 0 comments

public class EntityDataService<TEntity> : IEntityDataService<TEntity> where TEntity : class, new() { ... public virtual async Task SqlCommand(string SqlString) { await DbContext.Database.ExecuteSqlCommandAsync(SqlString); } } /////////////////////////////////////////////////////////////////////////////// public interface IEntityDataService<TEntity> where TEntity : class, new() { ... Task SqlCommand(string SqlString); } ///Please consider to add raw sql command execution.

hasan-ceo avatar Apr 08 '19 10:04 hasan-ceo