Database
Create a database with No Code. You automatically will get access to the data in your collection over fully managed and secure https endpoints
Using SDK
var projectId = Guid.Parse("{YOUR_PROJECT_ID}");
var apiKey = "{YOUR_SECRET_KEY}";
var client = new CodeMashClient(apiKey, projectId);
var service = new CodeMashRepository<Person>(client);[Collection("persons")]
public class Person : Entity
{
[Field("name")]
public string Name { get; set; }
}import { db } from 'codemash';$secretKey = '{YOUR_SECRET_KEY}';
$projectId = '{YOUR_PROJECT_ID}';
$client = new CodemashClient($secretKey, $projectId);
$codemashDb = new CodemashDb($client);Working with Database Service
CollectionsTaxonomiesImportsExportsBackupsLast updated