namespace xDataService.Constants {
///
/// Represent Supported DBMS for Managing Data ...
///
public enum XDbProviders {
None,
MySQL,
SQLite,
SQLServer,
MongoDB,
}
///
/// Represent Supported DBMS for Managing Data ...
///
public partial struct ProviderType {
public const string MySQL = "MYSQL";
public const string SQLite = "SQLITE";
public const string SQLServer = "SQLSERVER";
public const string MongoDB = "MONGODB";
}
}