Main public logs
From Wiki Aghanim
Jump to navigationJump to search
Combined display of all available logs of Wiki Aghanim. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 23:12, 17 February 2026 Administrator talk contribs moved page Programming/Use SQLite in C to Programming/Use SQLite in Csharp
- 22:43, 17 February 2026 Administrator talk contribs created page Programming/Use SQLite in C (Created page with "== SQLite == SQLite is a relational database that is small, and does not require much resources to run. == Use in C# == To use SQLite in your C# project you first need to install ''Sqlite'' packages from EntityFrameworkCore. <syntaxhighlight lang="bash"> dotnet add package Microsoft.EntityFrameworkCore.Sqlite </syntaxhighlight> Create a ''DBContext'' class, such as the one below. <syntaxhighlight lang="csharp"> { public class DBContext : DbContext // Custom...")