Powered By:
Android Advice
 

.NET

Solution to Error NHibernate.Exceptions.GenericADOException: Incorrect syntax near the keyword ‘end’

Posted by on January 12, 2013 at 9:13 pm

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. [...]

Solution to Error 175 The specified store provider cannot be found in the configuration or is not valid

Posted by on April 9, 2011 at 12:03 am

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 API in a Windows Forms Application

Posted by on November 12, 2010 at 6:42 am

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 [...]