HI Diego,

  If you are looking for Desktop app targeting .net 4.5 then you should 
look for this repository

https://github.com/couchbaselabs/couchbase-lite-net

You can pull and check out branch windows_target and then you can build by 
urself and try it out.

A very simple operation would be

Manager _cblManager = new Manager(new DirectoryInfo(@"C:\Database"), 
ManagerOptions.Default);


Database _database = _cblManager.GetDatabase(dbname);
 var vals =  new Dictionary<String,Object> {
        { "text" , value },
        { "check" , false },
        { "created_at" , jsonDate }
    };
var doc = _database .CreateDocument();

var result = doc.PutProperties (vals);
    if (result == null)
        throw new ApplicationException ("failed to save a new document");


For more information visit this link 
https://github.com/couchbaselabs/couchbase-lite-net/blob/master/packaging/component/GettingStarted.md


-Sherry

On Friday, 22 August 2014 17:45:25 UTC+5:30, Diego Garcia Vieira wrote:
>
> Hi,
>
>
> I'm building a desktop application with WPF. I want to embed a database 
> capable of replication with couchdb, aka couchbase lite .net.
>
> Is there any tutorial to get started ?
>

-- 
You received this message because you are subscribed to the Google Groups 
"Couchbase Mobile" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/mobile-couchbase/2f469bdf-7a3b-4102-902c-7d4f9b92b9b9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to