Data in Repositories

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
7 years ago
Hi,

I wanted to know how the values in repositories are filled for example in LocaleStringResource:_lsrRepository

var query = from l in _lsrRepository.TableNoTracking
                            orderby l.ResourceName
                            where l.LanguageId == languageId
                            select l;

Can someone explain me??
7 years ago
Hi,

I wanted to know how the values in repositories are filled from database to specific repository for example in LocaleStringResource:_lsrRepository

var query = from l in _lsrRepository.TableNoTracking
                            orderby l.ResourceName
                            where l.LanguageId == languageId
                            select l;

From where the data gets fill in _lsrRepository.TableNoTracking?? how the data is accessed from database?
Can someone explain me??
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.