The full meaning of FQL is 'Facebook Query Language'. This is used to retrieve filtered data from Facebook API, similar to how an SQL query works with a database. You won't find it exactly like SQL query syntax all the time, and not all kinds of operations, too. But it definitely meets the demand. In this tutorial, I will try to explain using FQL in your .NET application with … [Read more...] about Using FQL With Facebook C# SDK
c#
Using SQL JOIN Operation In LinQ/C#
Being LinQ an Object Relational Mapper, We can avoid writing sql query in many cases. Where its needed to be written even for simple purpose, we can achieve what we need just by calling linq provided methods with proper parameters.This facilitates to make the code more meaningful and less buggy. Join operations are done in sql for retrieve data from a complex relationship … [Read more...] about Using SQL JOIN Operation In LinQ/C#
LinQ Query With Like Operator
Linq To SQL makes a developer's life easy for performing various database operations. If the database design is stable, LinQ To SQL will do all the jobs you need to maintain consistency between data relations. Simple data retrieval, insertion, deletion, update, etc., can be done in a straightforward way, in some cases just by calling some functions on the LinQ objects. Several … [Read more...] about LinQ Query With Like Operator
“Facebooksdk” – C#.NET Library For Facebook API
If you are already developing a Facebook application on the .NET platform, you must have noticed that the official c# SDK for Facebook API isn't quite enough for most of the developers as still many common implementations are to be handled by developers themselves that consume times/complexity in development and also be less stable. However, the developers' community has helped … [Read more...] about “Facebooksdk” – C#.NET Library For Facebook API
Getting Started With XML Serialization In C#
Serialization/De-serialization is an essential aspect of any application, especially when it needs to communicate with another application by sending and receiving data. Generally, two different applications(also may be of different platforms) can't understand one another's internal data structure. In this case, XML data (Extensible Markup Language) can be a good bearer in … [Read more...] about Getting Started With XML Serialization In C#