Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit 2fff2f3

Browse files
authored
Queries can not be executed multiple times. (#25)
1 parent 8cd2794 commit 2fff2f3

File tree

8 files changed

+179
-119
lines changed

8 files changed

+179
-119
lines changed

src/Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@
2727
</PropertyGroup>
2828

2929
<PropertyGroup>
30-
<VersionPrefix>2.2.2</VersionPrefix>
30+
<VersionPrefix>2.3.0</VersionPrefix>
3131
<VersionSuffix></VersionSuffix>
3232
<FileVersion>$(VersionPrefix)</FileVersion>
3333
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
3434
<InformationalVersion>$(Version)</InformationalVersion>
3535
</PropertyGroup>
3636

3737
<PropertyGroup>
38-
<Product>Results</Product>
39-
<AssemblyTitle>Results</AssemblyTitle>
38+
<Product>LiteDB.Queryable</Product>
39+
<AssemblyTitle>LiteDB.Queryable</AssemblyTitle>
4040
<Copyright>Copyright © 2022-2024 Matthias Gernand. All rights reserved.</Copyright>
4141
</PropertyGroup>
4242

src/LiteDB.Queryable/IIncludableQueryable.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ namespace LiteDB.Queryable
1313
/// <typeparam name="TEntity">The entity type.</typeparam>
1414
/// <typeparam name="TProperty">The property type.</typeparam>
1515
[PublicAPI]
16-
// ReSharper disable once UnusedTypeParameter
1716
public interface IIncludableQueryable<out TEntity, out TProperty> : IQueryable<TEntity>
1817
{
1918
}

0 commit comments

Comments
 (0)