• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

lucaslorentz / auto-compute / 11755569045

09 Nov 2024 10:37AM UTC coverage: 80.033% (-1.7%) from 81.696%
11755569045

push

github

lucaslorentz
Add initial support for computed navigations and observers

159 of 357 new or added lines in 22 files covered. (44.54%)

41 existing lines in 6 files now uncovered.

1459 of 1823 relevant lines covered (80.03%)

113.72 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/LLL.AutoCompute/IUnboundChangesProvider.cs
1
using System.Linq.Expressions;
2
using LLL.AutoCompute.ChangesProviders;
3
using LLL.AutoCompute.EntityContexts;
4

5
namespace LLL.AutoCompute;
6

7
public interface IUnboundChangesProvider
8
{
9
    LambdaExpression Expression { get; }
10
    EntityContext EntityContext { get; }
11
    IChangeCalculation ChangeCalculation { get; }
12
}
13

14
public interface IUnboundChangesProvider<TInput, TEntity, TChange>
15
    : IUnboundChangesProvider
16
    where TEntity : class
17
{
NEW
18
    IChangeCalculation IUnboundChangesProvider.ChangeCalculation => ChangeCalculation;
×
19
    new IChangeCalculation<TChange> ChangeCalculation { get; }
20
    Task<IReadOnlyDictionary<TEntity, TChange>> GetChangesAsync(TInput input, ChangeMemory<TEntity, TChange>? memory);
21
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc