fix(s22): OrgExportJob.WriteCollection<T> — where T : class
Some checks are pending
Auto-tag / Create date-tag (push) Waiting to run
CI / Backend (.NET 8) (push) Waiting to run
CI / Web (React + Vite) (push) Waiting to run
CI / POS (WPF, Windows) (push) Waiting to run
Docker API / Build + push API (push) Waiting to run
Docker API / Deploy API on stage (push) Blocked by required conditions
Some checks are pending
Auto-tag / Create date-tag (push) Waiting to run
CI / Backend (.NET 8) (push) Waiting to run
CI / Web (React + Vite) (push) Waiting to run
CI / POS (WPF, Windows) (push) Waiting to run
Docker API / Build + push API (push) Waiting to run
Docker API / Deploy API on stage (push) Blocked by required conditions
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
aa83f82dc5
commit
4c1ac37a08
|
|
@ -186,7 +186,7 @@ await using (var s = rEntry.Open())
|
|||
}
|
||||
|
||||
private static async Task WriteCollection<T>(ZipArchive zip, string name,
|
||||
IQueryable<T> q, JsonSerializerOptions opts, CancellationToken ct)
|
||||
IQueryable<T> q, JsonSerializerOptions opts, CancellationToken ct) where T : class
|
||||
{
|
||||
var items = await q.AsNoTracking().ToListAsync(ct);
|
||||
await WriteJsonEntry(zip, name, items, opts, ct);
|
||||
|
|
|
|||
Loading…
Reference in a new issue