Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
freever committed Nov 22, 2021
1 parent f30b5bf commit a207f7b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Blauhaus.ClientActors" Version="0.10.3" />
<PackageReference Include="Blauhaus.ClientActors" Version="0.10.6" />
<PackageReference Include="Blauhaus.ClientDatabase.Sqlite" Version="0.7.11" />
<PackageReference Include="Blauhaus.Domain.Client.Sqlite" Version="1.6.30" />
</ItemGroup>
Expand Down
1 change: 0 additions & 1 deletion src/Blauhaus.Sync.Client.Sqlite/DtoCaches/SyncDtoCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ await SqliteDatabaseService.AsyncConnection.Table<TEntity>()
}



protected async Task<IReadOnlyList<TDto>> LoadManyAsync(Expression<Func<TEntity, bool>>? search = null)
{
var entities = search == null
Expand Down
2 changes: 1 addition & 1 deletion src/Blauhaus.Sync.Client/Blauhaus.Sync.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Blauhaus.ClientActors" Version="0.10.3" />
<PackageReference Include="Blauhaus.ClientActors" Version="0.10.6" />
</ItemGroup>

</Project>
3 changes: 1 addition & 2 deletions src/Blauhaus.Sync.Tests/.TestObjects/MyDto.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ public MyDto()
Id = Guid.NewGuid();
}


public Guid Id { get; set; }
public EntityState EntityState { get; set; }
public long ModifiedAtTicks { get; set; }
public string Name { get; set; }
public string Name { get; set; } = null!;
}
}

0 comments on commit a207f7b

Please sign in to comment.