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

lucaslorentz / auto-compute / 11763467169

10 Nov 2024 08:07AM UTC coverage: 77.292% (-12.0%) from 89.255%
11763467169

push

github

lucaslorentz
Add initial support for computed navigations and observers

168 of 433 new or added lines in 25 files covered. (38.8%)

7 existing lines in 5 files now uncovered.

1467 of 1898 relevant lines covered (77.29%)

109.86 hits per line

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

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

4
namespace LLL.AutoCompute;
5

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

13
public interface IChangesProvider<TEntity, TChange>
14
    : IChangesProvider
15
{
NEW
16
    IChangeCalculation IChangesProvider.ChangeCalculation => ChangeCalculation;
×
17
    new IChangeCalculation<TChange> ChangeCalculation { get; }
18
    Task<IReadOnlyDictionary<TEntity, TChange>> GetChangesAsync();
19
}
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