4
Answers

Entity Framework -Database first approach

Photo of Ramu Gade

Ramu Gade

5y
954
1
I want to understand how linq method works like below:
 
DataModel.matter dataObject = _context.matters.AsNoTracking()
.Include(lm => lm.country)
.Include(lm => lm.matterarchive)
.SingleOrDefault(lm => lm.id== id);
 
 I want to understand from basic

Answers (4)