Quantcast
Channel: URF - Unit of Work & (extensible/generic) Repositories Framework
Viewing all articles
Browse latest Browse all 1539

New Post: InsertOrUpdateGraph 1 to 1

$
0
0
Got it to work by going this route
            using (var context = new Context())
            {
                context.Customers.Add(customer);
                context.SaveChanges();
                return Ok(customer);
            }

Viewing all articles
Browse latest Browse all 1539

Trending Articles