koontz

Stories kicked by koontz

Model-First Design using ADO.NET Entity Framework 4.0(www.codegain.com)

submitted by codegaincodegain(2794) 1 year, 10 months ago

In Model first approach, we will be creating the EDM, conceptual model, first with respect to the business, and keep evolute the EDM till it fits for the business and then generate the database schema based on the EDM. At least it makes easier to limit the huge changes. We will see the what limitations we have in this approach, everything comes with limitation ? We will be learning following 1. Create Empty Model. 2. EDM Designer. 3. Creating Entities. 4. Creating Associations and Relation read more...

add a comment |category: |Views: 43

tags: another

IIS Express(web2asp.net)

submitted by sedgeysedgey(1728) 1 year, 10 months ago

If like me you are sick to death of Cassini (whats that then? its the built in web server that visual studio uses) and also sick to death of playing around with IIS 7 then relief is at hand. read more...

3 comments |category: |Views: 860

tags: another

Advices on partitioning code through .NET assemblies (codebetter.com)

submitted by vkreyninvkreynin(1424) 3 years, 5 months ago

There're many reason why you should keep the number of your .NET assemblies to the strict minimum. Learn them here. read more...

add a comment |category: |Views: 399

tags: another

Implementing a red black tree in C#(jaltiere.com)

submitted by jaltierejaltiere(885) 3 years, 5 months ago

This article talks about how to implement a red-black tree in C#. The implementation is generic, and it also implements IEnumerable<T>. read more...

add a comment |category: |Views: 1002

tags: another

Remove generated JavaScript from your pages(blog.madskristensen.dk)

submitted by tiernanotiernano(1674) 4 years, 7 months ago

One of the things that have always seemed a little weird to me is that ASP.NET auto-generates JavaScript and injects it in the rendered HTML. The JavaScript is needed to handle validation, postbacks, callbacks etc. but why does it have to write the same static functions when it could just as well be placed in a referenced .js file? If all the static functions where placed in an external .js file, it would be downloaded once instead of every time a page loads. read more...

add a comment |category: |Views: 16

tags: another

Software Development Essential Practices(chrisbrandsma.com)

submitted by cwbrandsmacwbrandsma(1711) 4 years, 7 months ago

A list of (essential) practices for software development, and tools to help you implement those practices. read more...

add a comment |category: |Views: 12

tags: another

Optimal String Comparison(blog.dotnetstyling.com)

submitted by armenczarmencz(220) 4 years, 7 months ago

There are several ways how to compare two strings in .Net but not all of them have similar performance impact. The blog post describes why certain methods work slowly and which comparison tool is the optimal to use in .Net. read more...

add a comment |category: |Views: 20

tags: another

ORM (object-relational mapping) in .NET 3.5(dotnetslackers.com)

submitted by powerrushpowerrush(3873) 4 years, 7 months ago

What this article covers is a general introduction to ORM concepts, the approach that .NET 3.5 takes, and how it compares to these other packages. read more...

1 comment |category: |Views: 272

tags: another