Problem : The asp.net home wiki appears to indicate that one can add references to locally produced dlls (assemblies) via […]
Author: Steve
How to ignore Event class member for binary serialization?
Problem : I need to avoid serializing an Event class member because when the event is handled by an object […]
Multiple Tables With Same Structure Entity Framework
Problem : We have a database with multiple tables with Same structure Table 1 Key ID …….. Table 2 Key […]
ExecuteAsyncPost Example in RestSharp.NetCore
Problem : I’m working with RestSharp.NetCore package and have a need to call the ExecuteAsyncPost method. I’m struggling with the […]
Sending a mail as both HTML and Plain Text in .net
Problem : I’m sending mail from my C# Application, using the SmtpClient. Works great, but I have to decide if […]
Use (certain) lambda expressions when targeting .NET 2.0?
Problem : ReSharper suggests we change: System.Net.ServicePointManager.ServerCertificateValidationCallback += delegate(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors) { return true; }; […]
Caching Claims in .net core 2.0
Problem : Looked up everywhere but looks like I am stuck right now. I am using Windows Active Directory in […]
FindByIdentity – performance differences
Problem : The following code works fine from a variety of machines on our domain. var context = new PrincipalContext(ContextType.Domain); […]
Text diff visualization control for WinForms or WPF
Problem : In continuation of the my previous question, are the any good controls for text diffs visualization? Something like […]
Why should I NOT use the GAC?
Problem : There have been a few questions asked along this line stackoverflow such as What are the advantages and […]