View DependenciesVisualizer.linq
<Query Kind="Program" /> | |
private string[] projectExtensionExclusions = new[] { ".vdproj", ".ndproj", ".wdproj", ".shfbproj" }; | |
private string rootFolder = @"C:\Users\Pascal\Dev\MyProject"; | |
void Main() | |
{ | |
LoadAllProjects(); | |
LoadAllPackagesConfig(); | |
GenerateDGML(Path.Combine(rootFolder, "Dependencies.dgml")); |
View gist:8177119
public Slice<T> GetSlice<T>(IEnumerable<Element<T>> elements, double totalSize, double sliceWidth) | |
{ | |
if (!elements.Any()) return null; | |
if (elements.Count() == 1) return new Slice<T> { Elements = elements, Size = totalSize }; | |
var sliceResult = GetElementsForSlice(elements, sliceWidth); | |
return new Slice<T> | |
{ | |
Elements = elements, |
View DocumentStoreBlobRepo.cs
public class ProjectRepository | |
{ | |
private CloudTable table; | |
private CloudBlobContainer container; | |
public ProjectRepository() | |
{ | |
var connectionString = "..."; | |
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(connectionString); |
View DocumentStoreRepositoryUsage.cs
public class Project | |
{ | |
public Guid Owner { get; set; } | |
public Guid Id { get; set; } | |
public string Name { get; set; } | |
public DateTime StartDate { get; set; } | |
public int Status { get; set; } | |
public List<Task> Tasks { get; set; } | |
} |
View DocumentStoreRepository.cs
public class ProjectRepository | |
{ | |
private CloudTable table; | |
public ProjectRepository() | |
{ | |
var connectionString = "..."; | |
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(connectionString); | |
var client = storageAccount.CreateCloudTableClient(); |
View ElasticTableEntity.cs
public class ElasticTableEntity : DynamicObject, ITableEntity, | |
ICustomMemberProvider // For LinqPad's Dump | |
{ | |
public ElasticTableEntity() | |
{ | |
this.Properties = new Dictionary<string, EntityProperty>(); | |
} | |
public IDictionary<string, EntityProperty> Properties { get; private set; } | |
View ElasticTableEntityUsage.cs
var connectionString="..."; | |
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(connectionString); | |
var client = storageAccount.CreateCloudTableClient(); | |
var table = client.GetTableReference("Demo"); | |
table.CreateIfNotExists(); | |
// dynamic keyword to use a dynamic entity | |
dynamic entity = new ElasticTableEntity(); | |
entity.PartitionKey = "Partition123"; |
View MiniProfiler.cs
MiniProfilerEF.Initialize_EF42(); // When using Code First | |
ConsoleProfiling.Start(); | |
using (StackExchange.Profiling.MiniProfiler.Current.Step("StepName")) | |
{ | |
using (var context = new Context()) | |
{ | |
var result = context.Entities | |
.Where(p => p.Property.StartsWith("Value")) | |
.ToList(); |
View SelfCompile
void Main() | |
{ | |
Environment.CurrentDirectory = Path.GetDirectoryName(Util.CurrentQueryPath); | |
Compiler.CompileFiles(Options.CreateOnDiskDll( | |
@namespace: "LinqPad.QueriesCompiler", | |
outputFile: "LinqPad.QueriesCompiler.dll") | |
.AddCodeFile(CodeType.LinqProgramTypes, Util.CurrentQueryPath)) | |
.Dump("Successfully created assembly at " + DateTime.Now.ToLocalTime()); | |
} |
View MemoryAppenderUT.cs
[SetUp] | |
public void SetUp() | |
{ | |
this.memoryAppender = new MemoryAppender(); | |
BasicConfigurator.Configure(this.memoryAppender); | |
... | |
} | |
[Test] |
NewerOlder