Initial Commit ...
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
namespace xDataService.Constants {
|
||||
/// <summary>
|
||||
/// Represent Supported DBMS for Managing Data ...
|
||||
/// </summary>
|
||||
public enum XDbProviders {
|
||||
None,
|
||||
MySQL,
|
||||
SQLite,
|
||||
SQLServer,
|
||||
MongoDB,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Represent Supported DBMS for Managing Data ...
|
||||
/// </summary>
|
||||
public partial struct ProviderType {
|
||||
public const string MySQL = "MYSQL";
|
||||
public const string SQLite = "SQLITE";
|
||||
public const string SQLServer = "SQLSERVER";
|
||||
public const string MongoDB = "MONGODB";
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user