7346db3b63
feat: Add SqlServerSchemaProvider for extracting database schema information from SQL Server feat: Introduce DatabaseType and NamingStrategy enums for better database management and naming conventions feat: Create IDatabaseDiscovery and IDatabaseManager interfaces for database operations and metadata retrieval feat: Develop REST service client architecture with BaseRestServiceClient and SAP Business One specific implementation feat: Implement REST service discovery page with UI for connecting to SAP Business One Service Layer and displaying discovered entities
12 lines
210 B
C#
12 lines
210 B
C#
namespace DataConnection.Enums;
|
|
|
|
/// <summary>
|
|
/// Strategia di mappatura dei nomi delle tabelle e colonne
|
|
/// </summary>
|
|
public enum NamingStrategy
|
|
{
|
|
Default,
|
|
CamelCase,
|
|
PascalCase,
|
|
SnakeCase
|
|
} |