The following fails to compile:
context.History
.Where(h => h.MigrationId == migrationId)
.Select(_ => 1)
.AsStreaming()
// AsStreaming causes compilation error because the project returns IQueryable<int> and there is a class constraint on the T of AsStreaming.
Comments: Assigned to Andriy.
context.History
.Where(h => h.MigrationId == migrationId)
.Select(_ => 1)
.AsStreaming()
// AsStreaming causes compilation error because the project returns IQueryable<int> and there is a class constraint on the T of AsStreaming.
Comments: Assigned to Andriy.