I am trying to follow the below mentioned tutorials in trying to use sqlite for my windwows store app..
http://channel9.msdn.com/Shows/Visual-Studio-Toolbox/Using-SQLite-in-Windows-Store-Apps http://timheuer.com/blog/archive/2012/06/05/howto-video-using-sqlite-in-metro-style-app.aspx
But all the videos and articles where in C# and I have a small problem here..
When using sqlite as described in the above links it works fine with c# as shown below adding SQLite.cs and SQLiteAsync.cs:
Now I would like to add a class for creating a table as shown and it works for C#:
public class person
{
[MaxLength(5), PrimaryKey]
public String name { get; set; }
[MaxLength(255)]
public String address { get; set; }
[MaxLength(11)]
public Double phone { get; set; }
}

Now If I do the same thing for my VB.Net project by adding same SQLite it shows me as shown below:
The class creating in VB gives me errors as shown:


an anyone say me where am I going wrong ?
