Skip to content

Conversation

@thefrozenfruit
Copy link

Describe the change
#1169

.ThenInclude(ep => ep.ExtensionAttributes)
.Include(wf => wf.ExecutionPointers)
.AsSplitQuery()
.FirstAsync(x => x.InstanceId == uid, cancellationToken);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
.FirstAsync(x => x.InstanceId == uid, cancellationToken);
.FirstOrDefaultAsync(x => x.InstanceId == uid, cancellationToken);

because it seems you're checking for raw being not null

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

subscription.Id = Guid.NewGuid().ToString();
var persistable = subscription.ToPersistable();
var result = db.Set<PersistedSubscription>().Add(persistable);
_ = db.Set<PersistedSubscription>().Add(persistable);
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could we put non-related changes in their own PR?

Copy link
Author

@thefrozenfruit thefrozenfruit Nov 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

@danielgerlag
Copy link
Owner

@copilot please resolve the conflicts

@danielgerlag
Copy link
Owner

The breaking changes to the integration tests are holding back this PR.
Not sure why we need them?

@danielgerlag
Copy link
Owner

@copilot please recreate this PR, but without all the unnecessary changes. Only include the Linq changes, please exclude the changes to the integrations tests where generic parameters are being added. Also please leave out the formatting changes.

@danielgerlag
Copy link
Owner

succeeded by #1399

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants