ตอนที่ 4 : สร้าง Project Windows Phone(WP) และการเชื่อมต่อกับ Mobile Services
ตอนที่ 4 : สร้าง Project Windows Phone(WP) และการเชื่อมต่อกับ Mobile Services บทความนี้จะเป็นการเริ่มต้นตั้งแต่การสร้าง Project ของ Windows Phone บน Visual Studio ด้วยการสร้าง Project ใหม่ และเรียกใช้ Library SDK ของ Mobile Services หรือถ้ามี Project อยู่แล้วก็สามารถเปิดโปรเจคนั้น ๆ เข้ามาทำการ Add Mobile Services for Windows Phone เข้ามาใน Project ได้เช่นเดียวกัน จากนั้นจะอธิบายขั้นตอนการทำการเขียนคำสั่งเพื่อติดต่อไปยัง Mobile Services ที่อยู่บน Windows Phone
ขั้นตอนที่ 1 การสร้าง Project ของ Windows Phone บน Visual Studio
เปิดโปรแกรม Visual Studio หรือถ้ามี Project อยู่แล้วก็ข้ามตั้นตอนการสร้างไปได้เลย โดยให้ไปที่ขั้นตอนที่ 2
ไปที่เมนู FILE -> New -> Project...
เลือกภาษา Visual C# และ Windows Phone -> Windows Phone App (หรือกรณีเป็น VB.Net ก็ได้เช่นเดียวกัน)
อย่าลืมว่าจะต้องเลือก Windows Phone OS 8.0 ขึ้นไปเท่านั้น
Could not install package 'Newtonsoft.Json 4.5.11'. You are trying to install this package into a project that targets 'WindowsPhone,Version=v8.0', but the package does not contain any assembly references that are compatible with that framework. For more information, contact the package author.
จากนั้นให้ปิดโปรแกรม Visual Studio แล้วเปิดโปรแกรมใหม่ พร้อมกับติดตั้งตัว WindowsAzure.MobileServices อีกครั้ง
ถ้าไม่มีอะไรผิดพลาดก็จะสามารถติดตั้งได้สมบูรณ์
ติดตั้ง Windows Azure Mobile Services สมบูรณ์แล้ว
ซึ่งตอนนี้ Library ต่าง ๆ ของ Windows Azure Mobile Services ก็เข้ามาอยู่ใน Project ของเราเรียบร้อยแล้ว
ขั้นตอนที่ 3 การเชื่อมต่อไปยัง Mobile Services ที่อยู่บน Windows Azure
ปกติแล้วเราจะทำการเชื่อมด้วย Url และ Key ของ Mobile Services ซึ่งจะนิยมประกาศไว้ในไฟล์ App.xaml.cs และจะประกาศไว้ครั้งเดียว
ให้ Copy Mobile Services Key ที่อยู่บน Portal Management
วางไว้ใน App.xaml.cs
public static MobileServiceClient MobileService = new MobileServiceClient(
"https://thaicreate.azure-mobile.net/",
"xexBNAFBIujPJbbmYJIyBdDqxZXGXM66"
);