Skip to content

Commit 00c6ac4

Browse files
committed
Address design meeting feedback
An arbitrary decision about an arbitrary number
1 parent c891a75 commit 00c6ac4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/EFCore.Sqlite.Core/Scaffolding/Internal/SqliteDatabaseModelFactory.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ protected virtual void InferClrTypes(DbConnection connection, DatabaseTable tabl
458458
commandText
459459
.Append(" FROM (SELECT * FROM ")
460460
.Append(DelimitIdentifier(table.Name))
461-
.Append(" LIMIT 131072)");
461+
.Append(" LIMIT 65537)");
462462

463463
command.CommandText = commandText.ToString();
464464

0 commit comments

Comments
 (0)