Popular Posts

Sunday, January 28, 2018

Generate insert script with exists

https://www.codeproject.com/Tips/1218208/Generate-Insert-scripts-of-Existing-Rows-with-if-E

Deadlock

http://www.sqlservercentral.com/redirect/articles/166711/

Tuesday, January 2, 2018

sample cache

void Main()
{

// Testing only
var cache = new Cache<string>();
cache.Add("test", new CacheItem<string>());
}

public interface ICache<TValue>
{
void Add(string key, CacheItem<TValue> value);
}

public class Cache<TValue>: ICache<TValue>
{
public void Add(string key, CacheItem<TValue> value)
{
Console.WriteLine(key);
}
}

public class CacheItem<TValue>
{

}


// Define other methods and classes here

Learn CSS Grid for free

Learn CSS Grid for free