Skip to content

Righthand Blog

About .NET/C#, Xamarin, Flutter and other fun technologies

  • Righthand Dataset Debugger Visualizer
.net

Problems signing an assembly with a key stored in key container (VS2005)

Posted on: February 11, 2006March 29, 2020

This is one of those problems you can’t understand how could it happen. Some background: In the past Visual Stuidio versions you were able to sign an assembly […]

.net

Caching of database schema in CodeSmith

Posted on: February 5, 2006March 29, 2020

So you’ve build a template (or using one) for CodeSmith that uses SchemaExplorer.DatabaseSchema class – the one that enables you browsing through database schema with ease (through a […]

.net

CodeSmith merge functionality for csproj files

Posted on: February 2, 2006March 29, 2020

If you are seriously using CodeSmith you will know about the merge functionality. True, with introduction of partial classes in .net 2 the need for merging is greatly reduced, […]

.net

XPO2 supports generics and nullables out of the box

Posted on: February 2, 2006March 29, 2020

XPO2 (currently in beta) supports both generics and nullables out of the box. I did a simple test by creating a generic XpCollection: XpCollection<SomeEntity> coll = new XpCollection<SomeEntity>(session1);SomeEntity […]

.net

CodeSmith 3.2 is released

Posted on: February 1, 2006March 29, 2020

While it doesn’t have many new features it has two really helpfull features – it runs under .net 2.0 and has a CodeSmith MSBuild task. I think that generics […]

.net

Even better way to use Linq over DataTable.Rows

Posted on: January 30, 2006March 29, 2020

Sahil posted even better way to use Linq over DataTable.Rows collection than the one I blogged about. Use extension method OfType<T> (sounds like a VB.NET method) on non-generic IEnumerable […]

.net

Microsoft Expression Interactive Designer January 2006 Community Technology Preview (CTP) (aka Sparkle) is available for download

Posted on: January 24, 2006March 29, 2020

Go, get Microsoft Expression Interactive Designer January 2006 Community Technology Preview (CTP) (aka Sparkle) here: http://www.microsoft.com/downloads/details.aspx?familyid=ed9f5fb2-4cfc-4d2c-9af8-580d644e3d1d&displaylang=en

.net / Slovenia

Slides from my "What’s new in Visual Studio 2005, .net 2 framework and programming languages" event are now online

Posted on: January 20, 2006March 29, 2020

I talked in front of a full room (about 55 attendees) and it was quite a good experience sharing the knowledge. And as I’ve promised I made avaliable the slides I […]

.net

Is Linq going to interfere with normal C# 2.0 projects

Posted on: January 17, 2006March 29, 2020

I see such questions here and there: “Is Linq going to interfere with normal C# 2.0 projects?”. Here is my guess. There are two parts of the issue. […]

.net

Linq over DataTable.Rows

Posted on: January 15, 2006March 29, 2020

Currently you can’t directly use Linq over and DataSet/DataTable/DataRowCollection/etc. class. Trying something like this won’t work: var q = from r in table.Rows select r; Enabling Linq over […]

Posts navigation

Previous page Page 1 … Page 21 Page 22 Page 23 … Page 31 Next page
Niche Blog by Fahim Murshed