Always loved JavaScript and client side scripting ( where appropriate <grin> ) – so when we had a new green field project to start, looked to what the best-in-class technologies were – settled on AngularJS (@angularjs). It is a client-side…
Category: .NET
jQuery 1.x && 2.x + MVC script bundling
In my blog “NuGet – Limiting updates for jQuery and Bootstrap” – we looked at continuing to utilize NuGet to keep us up to date on the latest jQuery 1.x version ( even though 2.x is out ). Reason being…
Entity Framework “Code First + Computed GETDATE()”
Need to setup a “Created” DateTime field in your SQL table that is auto-computed to add the current date and time that the field is inserted into the database? If you’re doing so in SQL – in the “Default Value…
NuGet – Limiting updates for jQuery and Bootstrap
I love to say “…if it’s not in NuGet, it’s DEAD to me…” – and for the most part that is very true. 🙂 If you don’t know what NuGet is – you MUST – look at Introducing NuGet: the…
Custom Configuration Pattern 102
So we will pick up from where we left off in “Custom Configuration Pattern 101” – we are looking to elegantly consume complex configuration settings in App.config and Web.config files – in this case we are looking to step up…
Custom Configuration Pattern 101
So if you’ve even needed to store custom data in your App.config or Web.config files before – you’ve probably used the ConfigurationManager.AppSettings for name/value pair data – but what if you have more complex settings that you want to store…
Watching dotnetConf, Live 2-days online
Have the dotnetConf live stream up and running while working… Totally free – online 2-day developer conference. It looks to be a fantastic line up of talks both today and tomorrow! Join dotnetConf…
Entity Framework “Code First + Existing Database” 102
Last we saw our intrepid developers they were creating their first “Code First + Migrations” 101 project – today we join them facing the dreaded “we want to do code first, but already have an existing database!!!”. Can they survive?…
Elegantly Randomizing an IEnumerable Collection
Had the need to randomly shuffle an IEnumerable collection that I was bringing back through Entity Framework – so did some searching and came across a couple solutions – some that were completely crazy – but took the best ideas,…
Entity Framework “Code First + Migration” 101
So for those who haven’t used Microsoft Entity Framework’s “Code First” approach to application development – it’s a very powerful approach that allows us developers to spin up a project with a database back end in record time! Early on…