alessandrokicks

Stories kicked by alessandrokicks

Entity framework and nhibernate too complex? Say hello to FluentData. (fluentdata.codeplex.com)

submitted by alessandrokicksalessandrokicks(195) 3 months, 6 days ago

Are you tired of fighting with overly complex ORMs such as Entity Framework and NHibernate? Are you tired of poorly generated SQL or having to change your business objects to work with your ORM? Do you miss the power and performance of ADO.NET and SQL, but not the manual tedious work? If so FluentData might be the framework for you. FluentData is a Micro ORM that makes it simple to select, insert, update and delete data in a database. It gives the developer the power of ADO.NET but with the convenience of an ORM. It has a simple to use fluent API that uses SQL - the best and most suitable language to query data, and SQL or fluent builders to insert, update and delete data. read more...

1 comment |category: |Views: 364

tags: another

ABMHO --A SYNTAX HIGHLIGHTER THAT RUNS ONLINE AND OFFLINE(blog.typps.com)

submitted by alessandrokicksalessandrokicks(195) 7 months, 23 days ago

The first stable release of Abmho is out. It is by no means the first or only syntax highlighter on the web. There are quite a few out there but the vast majority aren't usable. Abmho can mix languages within the same code snippet, allows you to style your code with live preview and many more features. Perhaps one of the most interesting feature is that it is a silverlight application that runs both on the web and optionally installable as an OOB application. read more...

1 comment |category: |Views: 14

tags: another

Binding data from the ViewModel to the Wpf menu control(blog.typps.com)

submitted by alessandrokicksalessandrokicks(195) 1 year ago

Databinding the Menu Control in wpf to a viewmodel can require a little bit of effort. As a menu control can contain hierarchical data, you must think of a data model to represent your menu items upfront, so I've decided to write a little about it. But before we dive into the meat and potatoes, lets try the basics first.. read more...

add a comment |category: |Views: 7

tags: another

GETTING THE MOST OUT OF THE WINFORMS PROPERTYGRID CONTROL IN WPF(blog.typps.com)

submitted by alessandrokicksalessandrokicks(195) 1 year ago

The PropertyGrid control has been missing in WPF since it's release and sadly it's still missing! There have been various attempts by third parties to provide one and I cant speak for the commercial offerings but I find the ones in the open source space to be quite lacking and incomplete. Most projects I found on codeplex are still in beta! I really like the api exposed by the original PropertyGrid which I have been using for years now but it's a Winforms control. This presents some problems. The main issue for me with the Winforms version of the PropertyGrid is that it's not styleable. So it means that I'll have some inconsistency in my UI and it will stick out as shabby and odd. read more...

add a comment |category: |Views: 10

tags: another

9 Quotes that stayed with me as a developer(www.d80.co.uk)

submitted by dan_swaindan_swain(190) 1 year, 1 month ago

I find quotes inspiring, motivating or sometimes just thought provoking, so here's some of my favourites from over the years. read more...

add a comment |category: |Views: 152

tags: another

Custom popup and windows in WPF the MVVM way(blog.typps.com)

submitted by alessandrokicksalessandrokicks(195) 1 year, 1 month ago

In WPF, using the regular window control to launch child windows makes MVVM and separating a View concern from the ViewModel very difficult. The problem: The window control works nicely as a shell for your application, however, launching child windows is problematic because the window control cannot be defined in xaml unless as the root element. So, if you wanted to launch child windows inside a parent window, you lose the ability to declare these in xaml. This loss means you will not be able to bind to properties in your ViewModel from the view for the purpose of opening/closing a window. Instead you end up doing this imperatively in code.. read more...

add a comment |category: |Views: 113

tags: another

Display and Editor Templated View Helpers in ASP.NET MVC(blog.typps.com)

submitted by alessandrokicksalessandrokicks(195) 1 year, 1 month ago

Templated view helpers simplifies your work greatly by allowing you to specify that rendering is required for display (read only view) or input via Display and Editor templated Helpers respectively without needing to explicitly specify what Html element to map the properties in our model to. read more...

add a comment |category: |Views: 8

tags: another

MARS - Multiple Active Result Sets support in SQL Server 2005 and abov(blog.typps.com)

submitted by alessandrokicksalessandrokicks(195) 1 year, 1 month ago

SQL Server 2005 onwards supports MARS - Multiple Active Result Sets. MARS enables you to reuse an existing connection to perform operations on SQL Server. This makes MARS a viable alternative to server-side cursors with significant performance boosts. As powerful that may seem it has it's drawbacks so care needs to be taken when using it. read more...

add a comment |category: |Views: 1

tags: another

.NET exceptions, error handling for the exceptional case(blog.typps.com)

submitted by alessandrokicksalessandrokicks(195) 1 year, 1 month ago

The tip of the day consists of in making sure to use a try/catch block to trap individual exception types such as SqlException which is specific whereas Exception is more general. For instance, imagine you are connecting to a database, it's quite common to experience a connection failure that you might not expect. So it makes sense to try to handle any unexpected connection failures. read more...

add a comment |category: |Views: 3

tags: another

Silverlight 4 XAML debug(blog.andrew-veresov.com)

submitted by priest2007priest2007(20) 1 year, 1 month ago

Having Silverlight 5 tools installed we could use XAML debugging also in Silverlight 4 applications read more...

add a comment |category: |Views: 17

tags: another

Silverlight or Html5 - from A .NET developer perspective.(blog.typps.com)

submitted by alessandrokicksalessandrokicks(195) 1 year, 1 month ago

If you are already invested in .NET, then you have been honing a particular set of skills for the past decade. This puts you at a position where it is difficult to favor Html5 simply because you lose some agility and sometimes this may make all the difference. read more...

add a comment |category: |Views: 49

tags: another

Five Things that HTML5 Video Currently will not do, but Silverlight or(silverlighthack.com)

submitted by bartczernickibartczernicki(503) 1 year, 1 month ago

This article will cover 5 pieces of functionality that are not built-in currently into the HTML5 video specification that Silverlight and Flash can solve. This article covers potential workarounds and how HTML5 will handle these limitations in the future. read more...

add a comment |category: |Views: 27

tags: another

Search engine friendly URLs in ASP.NET MVC using dynamic routing and a(www.kindblad.com)

submitted by kindbladkindblad(270) 1 year, 1 month ago

This post tells you how to make your ASP.NET MVC website support friendly URLs by using dynamic routing and a SQL-Server database to store the routes. read more...

add a comment |category: |Views: 21

tags: another

Migrate the Jetpack theme from Silverlight to WPF(blog.lexique-du-net.com)

submitted by jmix90jmix90(570) 1 year, 7 months ago

There is a great theme named Jetpack available for Silverlight applications which can be found on the Tim Heuer web site. I was wondering if it can be used in WPF applications and the answer is yes ! Here are the modifications I had to do to make all this work. read more...

add a comment |category: |Views: 85

tags: another

Beginners introduction to Jiffycms open source HTML Editor(weblogs.asp.net)

submitted by alessandrokicksalessandrokicks(195) 3 years, 2 months ago

Jiffycms HTML Editor is a rich text open source HTML editor with commercial grade features and is a great alternative to many free or commercial editors available today. It has great designer support in VS.NET and simply works out of the box without any additional configurations or plumbing on your part. read more...

add a comment |category: |Views: 73

tags: another

Why you should not use the ADO.NET Entity Framework(kindblad.com)

submitted by kindbladkindblad(270) 3 years, 4 months ago

Reasons to why the ADO.NET Entity Framework is not mature enough for real business application. read more...

3 comments |category: |Views: 942

tags: another