コード例 #1
0
        public Book Update(Book entity)
        {
            context.Update(entity);
            context.SaveChanges();

            return(entity);
        }
コード例 #2
0
        public Author Update(Author entity)
        {
            context.Update(entity);
            context.SaveChanges();

            return(entity);
        }