Skip to content

Commit e52410c

Browse files
committed
Make SQLite3 partial, so that we can add extensions in another file
1 parent e7f1dcb commit e52410c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Plugins/fix-library-path.sed~

+3
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@
1616

1717
# Make Quote function public, for libraries making raw queries
1818
s/static string Quote/public static string Quote/
19+
20+
# Make SQLite3 class partial, to extend in another file
21+
s/class SQLite3/partial class SQLite3/

Plugins/sqlite-net/SQLite.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4348,7 +4348,7 @@ public T FirstOrDefault (Expression<Func<T, bool>> predExpr)
43484348
}
43494349
}
43504350

4351-
public static class SQLite3
4351+
public static partial class SQLite3
43524352
{
43534353
public enum Result : int
43544354
{

0 commit comments

Comments
 (0)