adminjew

Stories submitted by friends of adminjew

Herding Code 142 - Scott Guthrie on the open source announcement(herdingcode.com)

submitted by jongallowayjongalloway(4380) 1 month, 3 days ago

The Herding Code guys talk to Scott Guthrie about the recent open source announcement for ASP.NET MVC, Web API, and Razor. read more...

1 comment |category: |Views: 113

tags: another

Phil Haack, Keith Dahlby and Paul Betts on Git for Windows(herdingcode.com)

submitted by jongallowayjongalloway(4380) 4 months, 6 days ago

Herding Code podcast talking to Phil Haack and Paul Betts (both new GitHubbers) and Keith Dahlby (author of posh-git, a set of PowerShell scripts which provide Git/PowerShell integration) about using Git on Windows. read more...

4 comments |category: |Views: 240

tags: another

10 Things ASP.NET Developers Should Know About Web.config Inheritance(weblogs.asp.net)

submitted by jongallowayjongalloway(4380) 4 months, 9 days ago

Ten things you should know about Web.config inheritance and overrides that will simplify some configuration challenges and help with debugging. Bet there are some you didn't know about! read more...

5 comments |category: |Views: 1282

tags: another

Herding Code 130: Dave Weaver on Loggr – a realtime analytics service (herdingcode.com)

submitted by jongallowayjongalloway(4380) 4 months, 22 days ago

Herding Code podcast with Dave Weaver about Loggr, a complete logging, analytics and notification service built with ASP.NET MVC, SignalR, and MongoDB. read more...

3 comments |category: |Views: 82

tags: another

Using Node.js in an ASP.NET MVC application with iisnode(weblogs.asp.net)

submitted by jongallowayjongalloway(4380) 7 months ago

iisnode makes it easy to run Node.js on Windows, and since it's an HTTP Handler you can integrate it directly into an ASP.NET application. Neat, huh? read more...

4 comments |category: |Views: 105

tags: another

Herding Code 124: Anthony van der Hoorn and Nik Molnar on Glimpse(herdingcode.com)

submitted by jongallowayjongalloway(4380) 7 months, 2 days ago

In this podcast, the Herding Code gang talks to Anthony and Nik, the creators of Glimpse. Glimpse is a system which allows you to view server-side information in the browser (think Firebug for server code) read more...

add a comment |category: |Views: 11

tags: another

Using CodeMirror to add C# highlighting to an HTML TextArea(weblogs.asp.net)

submitted by jongallowayjongalloway(4380) 11 months, 12 days ago

CodeMirror is a Javascript library that adds live syntax highlighting to a text area. This post shows how to use it in your applications. read more...

add a comment |category: |Views: 32

tags: another

ASP.NET MVC JavaScript Routing(weblogs.asp.net)

submitted by zowenszowens(988) 1 year, 5 months ago

I introduce a small utility that will allow generation of routes and controller actions into JavaScript to allow URL generation on the client side using ASP.NET MVC routing. read more...

1 comment |category: |Views: 352

tags: another

Native .NET Local Storage with VistaDB(visualstudiomagazine.com)

submitted by vistadbvistadb(879) 1 year, 10 months ago

VistaDB is a database engine written entirely in .NET managed code. It's a great solution for distributed applications that need to store data locally. read more...

add a comment |category: |Views: 5

tags: another

Building a Dynamic LINQ to Entities Compiler (Part 1)(infinitecodex.com)

submitted by vistadbvistadb(879) 1 year, 11 months ago

In this article I will explain how to build a dynamic LINQ to Entities compiler for any database provider that supports the Ado.net Entity Framework. Due to the wide range of technologies used this article, it will be broken up into two parts as listed below. We are working on a dynamic linq query mechanism for the next major release of VistaDB. Our goal is to provide a LinqPad type of environment in Data Builder for users to write LINQ queries against the database without having to first build an EF model. read more...

add a comment |category: |Views: 20

tags: another

Mulit-tenant ASP.NET MVC – Controllers(weblogs.asp.net)

submitted by zowenszowens(988) 1 year, 11 months ago

The time has come to talk about controllers in a multi-tenant ASP.NET MVC architecture. This is actually the most critical design decision you will make when dealing with multi-tenancy with MVC. In my design, I took into account the design goals I mentioned in the introduction about inversion of control and what a tenant is to my design. read more...

add a comment |category: |Views: 36

tags: another

Multi-tenant ASP.NET – Foundation(weblogs.asp.net)

submitted by zowenszowens(988) 1 year, 11 months ago

In my last post, I talked about some of the goals of multi-tenancy in general and some hints about my implementation. Now it is time to put a little meat on the bones. I’m ready to share my ideas about how to implement a multi-tenant system on ASP.NET MVC and IIS7. read more...

add a comment |category: |Views: 76

tags: another

Multi-tenant ASP.NET MVC – Introduction(weblogs.asp.net)

submitted by zowenszowens(988) 2 years ago

In this first post, I discuss what multi-tenancy means and how my implementation will be structured for use in ASP.NET MVC. Multi-tenancy is a technique used by many developers to increase IIS efficiency and reuse code. This is an introduction into some of the core elements of multi-tenancy and how to use multi-tenancy in ASP.NET MVC. read more...

add a comment |category: |Views: 294

tags: another

Entity Framework Compliance VistaDB vs SQL Server 2008 R2(infinitecodex.com)

submitted by vistadbvistadb(879) 2 years ago

We have spent a lot of time on our Entity Framework provider over the past 18 months or so. There is a sample EF provider from Microsoft that illustrates basic points, and if you look at all the open source databases they pretty much all used the default code in their implementations. But what if that sample code doesn’t implement something? Or if it is just plain wrong? I have to tell you we didn’t expect the results we got from this test at all. We expected that we probably had some room for improvement and that SQL Server would ace all the tests. Didn’t turn out that way. read more...

add a comment |category: |Views: 2

tags: another

Has Visual Studio caused the end of The World yet?(stevenharman.net)

submitted by usshermussherm(5285) 2 years, 3 months ago

If this error dialog is any indication... read more...

add a comment |category: |Views: 12

tags: another

10 things you must do to make your desktop database apps better(www.vistadb.net)

submitted by vistadbvistadb(879) 2 years, 3 months ago

Each of these items could be a blog post unto themselves, but I am going to try really hard to not be too verbose and just cover the core of the concept and why you need to do it. Everyone knows that any app driven by data is much more than just the app. In most cases the app without a database doesn’t even function, or fails to function properly. If a database is an integral part of your application, then shouldn’t you be doing all you can to ensure it stays healthy and prepare for the worst case events of corruption or dead drives? read more...

add a comment |category: |Views: 21

tags: another