Update projects

This commit is contained in:
2025-12-16 15:58:29 -03:00
parent 44dc36430a
commit 93301110b7
101 changed files with 23635 additions and 16252 deletions

View File

@@ -0,0 +1,22 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
namespace Tribufu.EntityFrameworkCore
{
public enum DatabaseDriver : byte
{
MySql = 0,
Postgres = 1,
SqlServer = 2,
Oracle = 3,
Firebird = 4,
Sqlite = 5,
MongoDb = 6,
}
}