-
-
Notifications
You must be signed in to change notification settings - Fork 146
Open
Milestone
Description
Input:
var couponCampaign = await dbContext.CouponCampaigns
.Where(c => c.Claims!.All(cl => cl.UserId != userId))
.Where(c => c.StartDate >= DateTimeOffset.UtcNow)
.FirstOrThrowAsync(c => c.Id == couponCampaignId);
var couponCampaign = await dbContext
.CouponCampaigns
.Where(c => c.Claims!.All(cl => cl.UserId != userId))
.Where(c => c.StartDate >= DateTimeOffset.UtcNow)
.FirstOrThrowAsync(c => c.Id == couponCampaignId);
Output:
var couponCampaign = await dbContext
.CouponCampaigns.Where(c => c.Claims!.All(cl => cl.UserId != userId))
.Where(c => c.StartDate >= DateTimeOffset.UtcNow)
.FirstOrThrowAsync(c => c.Id == couponCampaignId);
Expected behavior:
The formatting should allow the previous styles, preserving readability and the structured line breaks.
Is there any way to go back to one of the old styles without downgrading the version?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels