コード例 #1
0
ファイル: Repository.cs プロジェクト: emreaatalay22/xunit-moq
        public void Update(TEntity T)
        {
            _context.Entry(T).State = EntityState.Modified;

            _context.SaveChanges();
        }