File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
## version BIT.Data.Sync 1.0.1
2
- ### GuidService
3
- - The Guid generation algorithm was rewritten; the old version was not sortable.
4
- - A test class was created in the BIT.Data.Sync.Tests project to test the Guid generation.
2
+ ### ISequenceService
3
+ - Added new interface ISequenceService that is on charge or generating sequence numbers for delta entities
4
+ - Added new EfSquenceService (ISequenceService implementation)
5
+ - Added new MemorySquenceService (ISequenceService implementation)
6
+ - Updated delta index comparison query to use strings instead of guids
5
7
6
8
## version BIT.Data.Sync 1.0.0
7
9
### BIT.Data.Sync
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ namespace BIT.Data.Sync
6
6
{
7
7
public abstract class SequenceServiceBase : ISequenceService
8
8
{
9
- //TODO use for marting the sequence length
9
+ //TODO use formatting the sequence length
10
10
protected string Placeholder = "D10" ;
11
11
protected ISequencePrefixStrategy sequencePrefixStrategy ;
12
12
public SequenceServiceBase ( ISequencePrefixStrategy sequencePrefixStrategy )
You can’t perform that action at this time.
0 commit comments