Problem When attempting to save an object to the database via an NHibernate session the following error in thrown “Solution to Error NHibernate.Exceptions.GenericADOException: Incorrect syntax near the keyword ‘end’” Cause One of the property names is using the reserved sql word ‘end’ Solution Explicitly specify the column name using the escape characters i.e. [end] e.g. [...]
Problem: When building a .NET solution that uses the Entity Framework (EF) the following error message is displayed: “Error 175: The specified store provider cannot be found in the configuration, or is not valid.” and the build fails. Cause: The assembly of the provider being used by the Entity Framework cannot be found, that is, [...]
The Facebook Graph API is quite easy to use and not that hard to integrate into a .Net Forms application (the implementation would differ slightly between programming languages but the concepts are the same) Step 1: Authentication For your forms application to request Facebook-user specific information (e.g. Friends, pictures etc). You need to “Login” to [...]