Joe Dixon
Joe Dixon

Reputation: 1597

Connect to .net DataServices using Monotouch?

Is there any way to connect to Data Services using monotouch? creating a DataServices client an example would be really helpful

Upvotes: 1

Views: 247

Answers (1)

dalexsoto
dalexsoto

Reputation: 3412

Yes, it is avaible on monotouch it's under:

/Developer/MonoTouch/usr/lib/mono/2.1

I really don't know why it's not included on the stack, but you can reference it and it will work. Once imported into the project just use:

using System.Data.Services.Client;

I don't have an example, but it should work. :)

Upvotes: 2

Related Questions