sankeerth m

sankeerth m

  • NA
  • 484
  • 23.6k

Sql query using linq

Jun 15 2021 2:51 PM

Issue is i want to get all the records of dataset as well as mapped records in Authorization table

 

var dataSetProjects = (from DataSet in _context.Datasets.Where(x => x.IsActive)
                                       join auth in _context.Authorizations on DataSet.DatasetId equals auth.DatasetID


Answers (2)