Problem : What is the best approach to encrypting a SQLite database file in .Net/C#? I’m using sqlite-dotnet2 wrapper. There […]
.Net DizzyCoding
BestPractice – Transform first character of a string into lower case
Problem : I’d like to have a method that transforms the first character of a string into lower case. My […]
How to make streams from BLOBs available in plain old C# objects when using SqlDataReader?
Problem : This is the scenario: We store files, e.g. relatively large documents (10-300MB), in blobs in our MSSQL database. […]
Should I catch all possible specific exceptions or just general Exception and wrap it in custom one?
Problem : Let’s say I want to deserialize some XML file to a strongly typed object. In case this XML […]
Changing connection string at runtime in Enterprise Library
Problem : Is there a way to change the connection string of a DataBase object in Enterprise Library at runtime? […]
printing to pdf
Problem : The existing system has many reports . Using a free pdf printer like dopdf or cutepdf the user […]
Difference between Request.Cookies and Response.Cookies
Problem : I use both of these many times in my code and don’t really know what the difference is […]
Why Finalize method not allowed to override
Problem : I am new to .net ..and i am confused with the destructor mechanism in C# ..please clarify In […]
Is a static repository a right way to use NHibernate?
Problem : I spent the rest of the evening reading StackOverflow questions and also some blog entries and links about […]