adventurer

Stories kicked by adventurer

A simple way to run C# code from bat file(devintelligence.com)

submitted by adventureradventurer(2244) 1 year, 2 months ago

Demonstrating a way how to embed C# code into BAT file read more...

add a comment |category: |Views: 93

tags: another

Adding Git Command Line To Visual Studio(coderjournal.com)

submitted by zigamorphzigamorph(3319) 1 year, 2 months ago

If you are an avid Git user like I am, but also happen to work in a Visual Studio environment, you know that getting to your Git Bash command prompt is anything but easy. read more...

add a comment |category: |Views: 35

tags: another

Create Fluent API in C#(blog.chintan-shah.com)

submitted by chintanshah1986chintanshah1986(34) 1 year, 2 months ago

Blog explains how Fluent API can be created using C#. read more...

add a comment |category: |Views: 144

tags: another

5 Ways That Postsharp Can SOLIDify Your Code: Authorization(www.sharpcrafters.com)

submitted by mgrovesmgroves(260) 1 year, 2 months ago

One of the best uses of AOP is to take cross-cutting concerns that repeat themselves over and over in your system, and move them into their own class. Authentication and authorization are important parts of many applications, but too often the code to check if a user is authorized is spread all over the app. A class should have one and only one reason to change, so let's get the "auth" stuff into its own class. read more...

add a comment |category: |Views: 280

tags: another

WPF Themes now available on NuGet(www.rudigrobler.net)

submitted by TanyaGTanyaG(365) 1 year, 2 months ago

WPF Themes are now available on NuGet read more...

add a comment |category: |Views: 241

tags: another

Modifying LINQ To SQL command text(chriscavanagh.wordpress.com)

submitted by BobStroggBobStrogg(1033) 1 year, 2 months ago

Here’s a bit of code that’ll let you modify any command text LINQ To SQL generates before it hits the database. It’s always been possible to call DataContext.GetCommand and use modified SQL in a call to DataContext.Translate or DataContext.ExecuteQuery, but that’s pretty restrictive in the complexity of query you can use. Also, if LINQ To SQL decides it needs to batch multiple SELECT statements for the desired results, GetCommand can only give you the first one. The first thing to do is replace the IProvider implementation used by your DataContext. Unfortunately, DataContext’s Provider property is both private and read-only. Also, the IProvider interface itself is private. This is bad in every way, and we absolutely shouldn’t try to hack our way through that… but we will. read more...

add a comment |category: |Views: 40

tags: another

How to get rid from annoying IE warning when you debug a Silverlight(devintelligence.com)

submitted by adventureradventurer(2244) 1 year, 2 months ago

When you try to open a local file, Internet Explorer gives the following warning: "To help protect your security, Internet Explorer has restricted this webpage from running scripts or ActiveX controls that could access your computer.Click here for options…". read more...

add a comment |category: |Views: 14

tags: another

The Complete Guide To Validation In ASP.NET MVC 3 - Part 1(devtrends.co.uk)

submitted by devtrendsdevtrends(184) 1 year, 2 months ago

The latest release of ASP.NET MVC (version 3) has a number of new validation features that significantly simplify both the validation code AND the html outputted to the client. This multi-part article will attempt to cover all common validation scenarios and introduce all the new MVC3 validation features along the way. We will provide detailed explanations as well as full code examples that you can adapt for your own needs. read more...

add a comment |category: |Views: 329

tags: another

Output Caching Actions Gotcha in ASP.NET MVC 3(www.dotnetcurry.com)

submitted by johnastuntzjohnastuntz(191) 1 year, 2 months ago

The following article describes how to avoid the output caching problem in ASP.NET MVC 3. read more...

add a comment |category: |Views: 230

tags: another

LINQ - Performance considerations when building traffic heavy websites(dave.uk.com)

submitted by davesearledavesearle(85) 1 year, 2 months ago

A look at how to tackle LINQ performance problems on busy websites read more...

add a comment |category: |Views: 601

tags: another

An alternative to WinDbg – Debug Analyzer.Net(devintelligence.com)

submitted by adventureradventurer(2244) 1 year, 3 months ago

Debug Analyzer.NET is a debugging tool to analyze memory dumps using plug-ins written in .NET framework and can be used as WinDbg alternative read more...

add a comment |category: |Views: 51

tags: another

SlimTune – an open source profiling for .NET applications(devintelligence.com)

submitted by adventureradventurer(2244) 1 year, 4 months ago

SlimTune is a open source profiler and performance tuning tool for .NET based applications, written in C#, VB.NET. It provides nice set of powerful features read more...

add a comment |category: |Views: 51

tags: another

XPath Visualizer(devintelligence.com)

submitted by adventureradventurer(2244) 1 year, 4 months ago

XPath Visualizer is a simple tool, that lets you execute a XPath query and see the results. The .Net 3.5 is required to use the tool . read more...

add a comment |category: |Views: 26

tags: another

Extensibility pattern in c#(dotnetmonitor.com)

submitted by adventureradventurer(2244) 1 year, 8 months ago

The Extensibility pattern allows to expand an object functionality in the runtime . All needful interfaces can be found in System.ServiceModel namespace. read more...

add a comment |category: |Views: 376

tags: another

Buy Anders' Pascal 4 dev laptop(cgi.ebay.com)

submitted by yesthatmcgurkyesthatmcgurk(4063) 2 years, 3 months ago

Ebay auction for Anders Hejlsberg's (lead architect at MS on the .NET platform) old laptop on which he developed Turbo Pascal 4. Proceeds go towards Haiti relief. Pretty damn cool, and (at least right now) cheap! read more...

add a comment |category: |Views: 290

tags: another

ASP.NET MVC 2 RC 2 Released(haacked.com)

submitted by johnsheehanjohnsheehan(4785) 2 years, 3 months ago

After receiving feedback from our last release candidate back in December, we decided it would be prudent to have one more release candidate that incorporated the feedback. You can read the release notes for everything that changed, there’s not a whole lot. read more...

add a comment |category: |Views: 227

tags: another