Пример #1
0
 public void Update(DalCategory entity)
 {
     _context.Set <Category>().AddOrUpdate(entity.ToOrmCategory());
 }
Пример #2
0
 public void Create(DalCategory entity)
 {
     _context.Set <Category>().Add(entity.ToOrmCategory());
 }