cengizh

Stories kicked by cengizh

Create an output folder for each project in your solution...(develoq.net)

submitted by cengizhcengizh(35) 6 months ago

Create an output folder for each project in your solution, like _PublishedWebsites for web applications. read more...

add a comment |category: |Views: 6

tags: another

Custom Controller Factory in ASP.NET MVC(develoq.net)

submitted by cengizhcengizh(35) 1 year, 10 months ago

I am using ASP.NET MVC framework from the time first beta bits released, I am big fan of this framework because of it’s extensibility and specifically simplicity. ASP.NET MVC framework activates the controllers when a request arrived to it’s pipeline. Default naming and structure rules of controllers are : Controller class name must ends with “Controller”. Controller class must have constructor with no parameters. These constraints come from the default controller factory of ASP.NET MVC Framework. read more...

add a comment |category: |Views: 23

tags: another

Dynamic Management Views and Functions Tips(develoq.net)

submitted by cengizhcengizh(35) 1 year, 10 months ago

Dynamic Management Views and Functions feature comes with SQL Server 2005 version. They provides some information about system, and what is going under when SQL Server running. So you can use DMV and DMF objects to monitor the system and tune it. These object located under sys schema and names are start with the dm. As previous system objects in SQL Server, internal implementation of these objects can be change with the future releases. I want to share some code snippets about some of DMV/F’s which I had use while tuning and monitoring SQL Server. read more...

add a comment |category: |Views: 3

tags: another

SQL Server Database Snapshot(develoq.net)

submitted by cengizhcengizh(35) 1 year, 10 months ago

SQL Server database snapshot feature provides you to have a read-only copy of your current database. You can create a snapshot only on the server which is actual db located. In other words, you can’t create a snapshot on any other server than the server that host your actual database. We use snapshots for solving some reporting problem and some scenarios like that. Benefits of the snapshot is not the subject of this blog entry. If you have experience with SQL Server snapshot, did you think about this limitation? What is the design issues under this limitation? read more...

add a comment |category: |Views: 3

tags: another

What is Continuous Integration?(develoq.net)

submitted by cengizhcengizh(35) 1 year, 10 months ago

Continuous Integration is a software development practice. This practice and name firstly pronounced by Martin Fowler and Kent Beck in 1999. The idea behind this practice is integrating the code that is checked in by developers frequently. Picture this scenario; you have a team of developers and every developer makes checkins their work. All of the developers try to build the changes they made successfully in their own machines. But every developer makes checkins and these checkins must be integrated and you need to know that all checkins can work in the whole system successfully. I know some companies dedicate some people only for this job -making integrations manually-. This is not a good solution. The solution is automation! Continuous Integration (CI) automates this process. read more...

add a comment |category: |Views: 4

tags: another

Don’t castrate your architecture(ayende.com)

submitted by cengizhcengizh(35) 2 years, 10 months ago

Application architecture tiers, layers and nhibernate. read more...

add a comment |category: |Views: 12

tags: another

System.Data.Linq.Binary is not XmlSerializable(west-wind.com)

submitted by rstrahlrstrahl(7226) 2 years, 10 months ago

LINQ to SQL generates TimeStamp fields as System.Data.Linq.Binary types in the data model it creates. This type unfortunately doesn't serialize and XmlSerializer and therefore Web Services in general fail with a downright serialization failure. It's possible to work around this by using internal scope but it isn't a perfect solution. read more...

add a comment |category: |Views: 19

tags: another

Entity Framework: How to Prevent Eager Loading(developmentalmadness.blogspot.com)

submitted by developmentalmadnessdevelopmentalmadness(730) 2 years, 11 months ago

Using eager loading is a means to improve performance when using Entity Framework, but there are a couple anti-patterns which will prevent you from taking advantage of the benefits of eager loading. read more...

add a comment |category: |Views: 23

tags: another

Integration Testing Your ASP.NET MVC Application(blog.codeville.net)

submitted by desmonddesmond(2014) 2 years, 11 months ago

Unit tests are great for proving the correctness of a single component. But how can you prove that you whole ASP.NET MVC application hangs together properly - including its view templates, configuration settings, and database schema? Integration tests cover what unit tests can't - Steven Sanderson shows one way to approach it with ASP.NET MVC. read more...

add a comment |category: |Views: 401

tags: another

The Most Powerful Development Tool Ever Made(codethinked.com)

submitted by ZteffZteff(144) 2 years, 11 months ago

Justin Etheredge wrote a great blog post about not inventing the wheel everytime a classic programming problem shows up. read more...

4 comments |category: |Views: 1109

tags: another

SubSonic 3.0: The SimpleRepository « Rob Conery(blog.wekeroad.com)

submitted by javeryjavery(5523) 2 years, 11 months ago

Rob is adding a very nice simple repository to SubSonic 3.0 that will give SubSonic top-notch POCO support and very slick migrations. Mapping files be damned! read more...

add a comment |category: |Views: 397

tags: another

Binding in ASP.NET MVC(stevesmithblog.com)

submitted by ssmithssmith(1160) 2 years, 11 months ago

Answers to some frequently asked questions about binding data to forms in ASP.NET MVC. Covers Bind(), ModelBinders, and ViewData.Model. read more...

add a comment |category: |Views: 276

tags: another

ASP.NET MVC TDD using Visual Studio 2010(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 2 years, 11 months ago

Phil Haack announced yesterday that the tooling support for ASP.NET MVC is available for Visual Studio 2010. Troy Goode already blogged about the designer snippets (which are really really cool, just like other parts of the roadmap for ASP.NET MVC 2.0). I’ll give the new TDD workflow introduced in VS2010 a take. read more...

1 comment |category: |Views: 366

tags: another

Improve your jQuery - 25 excellent tips(tvidesign.co.uk)

submitted by beckelmwbeckelmw(2755) 3 years, 5 months ago

jQuery is awesome. I've been using it for about a year now and although I was impressed to begin with I'm liking it more and more the longer I use it and the more I find out about it's inner workings. I'd call myself an "intermediate" jQuery user and I thought some others out there could benefit from all the little tips, tricks and techniques I've learned over the past year. The article also ended up being a lot longer than I thought it was going to be so I'll start with a table of contents so you can skip to the bits you're interested in. read more...

2 comments |category: |Views: 776

tags: another