Исходный код вики Сценарии

Редактировал(а) Alexandr Fokin 2024/03/04 23:51

Скрыть последних авторов
Alexandr Fokin 1.1 1 |(% style="width:211px" %)Модификация существующего IQueryable|(% style="width:1243px" %)Remove OrderBy from an IQueryable<T>
2 [[https:~~/~~/stackoverflow.com/questions/10591010/remove-orderby-from-an-iqueryablet>>https://stackoverflow.com/questions/10591010/remove-orderby-from-an-iqueryablet]]
Alexandr Fokin 1.2 3 |(% style="width:211px" %)Перенос IQueryable между DbContext|(% style="width:1243px" %)(((
4 Change DataContext of IQueryable
5 [[https:~~/~~/stackoverflow.com/questions/30706282/change-datacontext-of-iqueryable>>https://stackoverflow.com/questions/30706282/change-datacontext-of-iqueryable]]
6
7 {{code language="c#"}}
8 typedQuery = _dbContext.Set<TEntity>()
9 .AsQueryable()
10 .Provider
Alexandr Fokin 1.3 11 .CreateQuery<TProjection>(sourceQuery.Expression)
Alexandr Fokin 1.2 12 {{/code}}
13 )))
Alexandr Fokin 1.1 14 |(% style="width:211px" %) |(% style="width:1243px" %)
15