How to do secure Elasticsearch free with xpack security C.GULDOGAN 2:15 AMYesterday, I have invested a couple of hours to secure eleasticsearch. Elasticserch comes with a couple of security features. If you ... Read More
How Clean Git Repository for Visual Studio Projects? C.GULDOGAN 6:00 PM Today I suddenly push a personal project of mine to a repository without .gitignore .gitignore is very helpful if you don't want to me... Read More
Object to Json String C# C.GULDOGAN 6:53 AM Generally for logging purposes I'm need to convert object to Json sting. It is very helpful to keep track of incoming or outgoing obje... Read More
ASP.NET Web API IP Filter C.GULDOGAN 7:37 AM If you need to restrict an access to your some of the web controllers it is safer to do with help of Asp.net web api filters. The web a... Read More
Azure ARM Template Connection String Settings C.GULDOGAN 4:03 PM Search "serverFarmId" keyword in your template. paste the following code for connection settings. By default db is mysq... Read More
Select as a XML MSSQL C.GULDOGAN 4:40 PM In Mssql you can get select result as XML by using following TSQL statement SELECT * FROM TableName FOR XML path, root; Read More
Implementing Thread Safe Singleton Pattern in C# C.GULDOGAN 2:59 PM Hi today I want to share Thread Safe Singleton code sample. I found this samples from Here You can use Singleton_Lazy class if you are u... Read More