Project DescriptionThis library provides easy access to mite from .net projects.
MiteConfiguration miteConfiguration = new MiteConfiguration(new Uri("http://{mydomain}.mite.yo.lk"), "{my-api-key}");
using (IDataContext context = new MiteDataContext(miteConfiguration))
{
Customer customer = new Customer();
customer.Name = "Myself";
customer = context.Create(customer);
Project project = new Project();
project.Name = "mite.net";
project.Customer = customer;
context.Create(project);
}
What is implemented by now
- Basic CRUD functionality for all mite entities
What is missing