0 people following this project (follow)

Project Description
This library provides easy access to mite from .net projects.

Please visit the new home of this project: https://github.com/ccellar/mite.net

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

Last edited Apr 24 at 12:49 PM by ckr, version 5