Category Archives: Development

Dotnet development

Version store out of memory

In our current project we use Sql Server Data Tools (sqlproj) to put our database in source control. Recently we experienced random exceptions during loading and building the solution with multiple sql projects. Last week our builds started to fail. … Continue reading

Posted in Development | Tagged , , , | 1 Comment

AngularJs and special characters from json webservice

My current project creates a Single Page Application (SPA) using ASP.NET MVC and AngularJs with data from ASP.NET MVC webapi REST webservices. With the buzzwords out of the way, let me describe the issue we had. Some data from the webservice … Continue reading

Posted in Development | Tagged , | Leave a comment

Back to T4

We generate our web api. This saves time and makes access uniform. But there are some rules we have to obey to get this working. With Entity Framework Model First (edmx) we generate our data layer. By customising the template we … Continue reading

Posted in Development, Tooling | Tagged , , | Leave a comment

CypherNet fork

Recently I was asked to help with a Proof-of-concept for graph databases. The database in question was neo4j and it uses cypher as the query language. Some say it is like SQL, some say it’s not even close. My part … Continue reading

Posted in Development | Tagged | 1 Comment

Performance tuning EF, ASP.NET and loadtest

We are developing webservices for accessing data in SQL Server. The performance requirement was not met until we started to tune our solution. TLDR: use table in stead of view EF First we added the AsNoTracking() extension from EntityFramework to … Continue reading

Posted in Development | Tagged , , , , , , | Leave a comment