Loading...
DotNetKicks.com
.NET links, community driven
login
register
submit a story
upcoming stories
about
blog
Why not
join our community?
, there are
6 users online
home
users
zigamorph
comments
DotNetKick.com is an
open-source project
. Please
report any bugs
and let us know
your great suggestions
.
Currently running svn revision
620
(rss)
Kick Spy!
,
Kick Zeitgeist
and
Kick Widgets
zigamorph
Profile
Kicked
Submitted
Comments
Tags
Friends
Kicked By Friends
Submitted By Friends
Comments:
Turn Google App Engine into your own Personal Content Delivery Network
This is actually working very well for me.
posted by
zigamorph
23 days, 2 hours ago
Give Your ASP.NET Applications Velocity
10 years, there is no way memcached is that old. I don't even think LiveJournal is that old. memcached is at most 5 years old.
posted by
zigamorph
29 days, 5 hours ago
the LinqToSQL is a lie
Naz, that is correct it is because two different SQL queries are getting run. One for the Quote object and one for the Customer object, the Quote object is the top level so that is all that is being shown. If you are definitely using both and to cut down on round trips you want to consider the following.
from q in db.QuoteLINQs
where q.QuoteID.Equals(10)
select q, q.CustomerLINQ.CustomerID;
This will return both at the same time and should result in the SQL you are looking for. You can also use a feature in the DataContext that allows you to bind all references at the same time, however that is overkill for just getting back a CustomerID.
posted by
zigamorph
1 month, 26 days ago
the LinqToSQL is a lie
It is not lying you have two different queries, one query that you displayed on the blog, and one related query that only gets called when you request the data. You examining the object with the debugger calls this data. Use SQL Profiler you will see two different queries. ;(
posted by
zigamorph
1 month, 26 days ago
Why are event raising methods marked as protected virtual?
actually the code should read
protected virtual void OnEvent (EventArgs e) {
}
There shouldn't be an override, because override is what is done to the virtual.
posted by
zigamorph
2 months, 24 days ago
Localhost HTTP debugging with Fiddler
I have had mixed problems with "localhost." mostly browsers get confused when you do "localhost.:50000" with ports.
posted by
zigamorph
3 months, 22 days ago
ASP.NET MVC: Securing Your Controller Actions
http://www.coderjournal.com/2008/03/securing-mvc-controller-actions/
There is actually a way to do this already built in to the .NET framework and operates in side the run time. It is called PrincipalPermissionAttribute.
posted by
zigamorph
3 months, 22 days ago
Singularity Source Code Released to CodePlex
I just realized this has already been submitted. Please ignore.
posted by
zigamorph
4 months ago
Writing Maintainable Code Considered Harmful
Sounds like somebody is trying to justify their hackish code.
posted by
zigamorph
4 months, 7 days ago
How to get a base URL from a given URL in ASP.NET
What is the matter with the built in function to do this?
Uri url = new Uri("
http://msdn2.microsoft.com/en-us/netframework/default.aspx");
string basePart = url.GetLeftPart(UriPartial.Authority);
posted by
zigamorph
4 months, 10 days ago
ASP.NET Rich Text Editor Control
So I wonder if anybody should tell the developer that font tags shouldn't be used in your HTML anymore.
posted by
zigamorph
7 months, 20 days ago
« Previous
1
Next »
Sponsored Link:
www.carlist.ie
Search:
Ads via The Lounge
DotNetKicks is an open source project from
Incremental Systems