Using the .Net Facebook Developer Toolkit, how do I execute FQL queries?
A:
Example of the FQL query with Facebook Developer Toolkit:
api.Fql.Query("SELECT contact_email FROM user WHERE uid=" + UserID);
as you can see FQL is pretty similar to the SQL. "Query" method returns XML.
Peter Stegnar
2010-07-16 05:10:33