By tag: framework
0
kicks
How do you learn a new framework?
Nick Harrison poses some good questions about how we learn new technologies and libraries, and suggests a few ways to speed up the process.
0
kicks
Are you “fluent” in C#?
I’m starting a new codeplex project to build a fluent library for design patterns. For example let’s take those examples.
0
kicks
Complete guide to Dynamic keyword in C#
An extensive article to understand how dynamic keyword works, limitations and best places to use it
0
kicks
Repository pattern with Entity Framework Code-First in Composable Serv
Implement Repository, UnitOfWork with Audit support in Composable Service End
0
kicks
Tired of querying in antiquated SQL? don't have a DBMS handy?
This amazing small tool allows to query SQLSERVER or MYSQL databases using LINQ or simple SQL, doesn't require installation, and works like a charm, really useful if you're trying to learn LINQ. It's just 4MB
0
kicks
EF 4.1+ POCO, Repository and Specification Pattern Framework
I've been playing around with Code First EF implementations for awhile now and by far the best implementation I've seen is a framework by Huy Rua. It has the following functionality baked in: True Separation of Concerns for entities (no need for a data annotations dependency). A Generic Repository....
0
kicks
Simplify common data access functions by using Entity Framework extens
Simple project featuring usage of EntityFramework CodeFirst and overriding SaveChanges method of DBContext in order to keep record of changes on entities in database. There is a simple usage sample project and a test project with couple of test cases to confirm that everything is working.
0
kicks
Implementing repository Pattern With EF4 POCO support
Here I have described of implementation repository pattern with EF4 POCO support according to my earlier articles.
0
kicks
Begin with Parallel programming in Dotnet 4.0
Now a days computers are coming with multiple processors that enable multiple threads to be executed simultaneously to give performance of applications and we can expect significantly more CPUs in near future. If application is doing CPU intensive tasks and we find that one CPU is taking 100 %usage ...
0
kicks
Entity Framework: Intro to Model First Design
Taking a look at how to use the Entity Framework via its model first design concepts.
When building out an application which is based off of the Entity framework you have multiple options, you can either build your model off of your existing database or build your database of your existing model....
0
kicks
Repository, Specification, Unit of Work, Persistence Ignorance POCO 3
Code Re-factoring for the sample project attached with the post Repository, Specification, Unit of Work, Persistence Ignorance POCO with Microsoft ADO.NET Entity Framework 4.0 Beta 2. Brief explanation of the changes are included.
0
kicks
Repository, Specification, Unit of Work, Persistence Ignorance POCO 2
This is my second post on one of the ways of applying the Repository, Specification and Unit of Work pattern using the persistence ignorance POCO with the upcoming ADO.NET Entity Framework 4.0. This post will explain how to implement the Repository, Specification & Unit of Work with Entity Frame...
0
kicks
Repository, Specification, Unit of Work, Persistence Ignorance POCO
This is my first post on one of the ways of applying the Repository, Specification and Unit of Work pattern using the persistence ignorance POCO with the upcoming ADO.NET Entity Framework 4.0. First part of this post will introduce the Entity Framework 4.0, its features and its comparison to Entity ...
0
kicks
.NET CF Performance Best Practices
The impact of performance is much more readily apparent in .NET Compact Framework applications. The mobile devices commonly have a CPU that is 10 times slower than your desktop CPU, and possibly up to 100 times less RAM than a desktop or server. In Agile or XP development, the mantra is often to i...
0
kicks
Parallel LINQ (PLINQ) with Visual Studio 2010
On the last day of May I wrote about how to calculate prime numbers with LINQ in C#. To close that post I said that I’d use the primeNumbers delegate to evaluate PLINQ (Parallel LINQ) and measure the performance gains when the same calculation is done in parallel instead of in a sequential fashion. ...