Example #1
0
        public async Task InitialiseAndAddAsync(
            string azureServerUrl,
            string licenceKey,
            string localDbName,
            Action <TableDefiner> tableDefinitions)
        {
            var dataContext = await factory.MakeAsync(
                azureServerUrl,
                licenceKey,
                localDbName,
                tableDefinitions);

            contexts.Add(localDbName, dataContext);
        }