Files

18 lines
519 B
C#
Raw Permalink Normal View History

using System.Threading.Tasks;
using Kruzya.TelegramBot.Core.Data;
using Microsoft.EntityFrameworkCore;
2020-03-09 19:31:16 +04:00
using Microsoft.EntityFrameworkCore.Infrastructure;
2020-03-02 00:00:44 +04:00
namespace Kruzya.TelegramBot.Core.Extensions
{
2022-01-22 17:13:38 +03:00
public static partial class RepositoryExtension
2020-03-02 00:00:44 +04:00
{
public static TEntity Create<TEntity>(this DbSet<TEntity> repository) where TEntity : class, new()
{
var entity = new TEntity();
repository.Add(entity);
return entity;
}
}
}