Пример #1
0
        //"https://localhost:8081~C2y6yDjf5/R+ob0N8A7Cgv30VRDJIWEHLM+4QDU5DE2nQ9nDuVTqobD4b8mGGyPMbIZnqyMsEcaGQy67XIw/Jw==~NCacheDb"
        public PersistentStoreContext(string serviceEndPoint, string authKey, string databaseName, DbContextOptions <PersistentStoreContext> options) : base(options)
        {
            _dbType = PersistentStoreType.Cosmos;

            _serviceEndPoint = serviceEndPoint;
            _authKey         = authKey;
            _databaseName    = databaseName;
        }
Пример #2
0
 public PersistentStoreContext(string connectionString)
 {
     _dbType           = PersistentStoreType.SqlServer;
     _connectionString = connectionString;
 }