StackOverflow

Stories kicked by StackOverflow

LINQ to SQL and Transactions(west-wind.com)

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

Using explicit Transactions with Linq to Sql is fairly rare but when you need them you'll find that it natively doesn't provide manual transaction management. Rather you have to rely on the TransactionScope class to provide transaction wrapping. Here's a contrived example, and a couple of different transaction scenarios using TransactionScope to manage multiple L2S data operation as a single transaction. read more...

add a comment |category: |Views: 345

tags: another

Url manage javascript library(blog.dynback.com)

submitted by StackOverflowStackOverflow(200) 3 years ago

Change url, in jQuery style, for example: ‘http://www.google.com’.url().param(’search’, ‘js’) adds parameter to url read more...

add a comment |category: |Views: 11

tags: another

Free ASP.NET MVC eBook Tutorial - ScottGu(weblogs.asp.net)

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

There has been a lot of excitement in the community about the new ASP.NET MVC framework that is about to ship (literally any day now – announcement coming soon). As with anything new, people are also asking for more tutorials/samples/documentation that cover how to get started and build applications with it. Over the last few months I’ve been helping to contribute to an ASP.NET MVC book that Scott Hanselman, Rob Conery, and Phil Haack have been writing for Wrox. The book is now in production, and will be available to buy in stores soon read more...

2 comments |category: |Views: 802

tags: another

JQuery Shortcuts: $.showhide(length > 0) (blog.dynback.com)

submitted by StackOverflowStackOverflow(200) 3 years, 2 months ago

Eliminate boolean situations like if (length > 0) { $('div').show() } else { $('div').hide() } read more...

add a comment |category: |Views: 28

tags: another

JQuery Shortcuts: $.hoverClass(’over’) (blog.dynback.com)

submitted by StackOverflowStackOverflow(200) 3 years, 2 months ago

Very suitable small plugin - shortcut, for emulate hover in css read more...

add a comment |category: |Views: 24

tags: another

Json [Date -> String -> Date](blog.dynback.com)

submitted by StackOverflowStackOverflow(200) 3 years, 5 months ago

For them who have problems with Date on client. Conversion both sides. read more...

add a comment |category: |Views: 123

tags: another

Killing using(DataContext){}(blog.dynback.com)

submitted by StackOverflowStackOverflow(200) 3 years, 5 months ago

If you also made of using(DataContext ct = new DataContext) { ctx.SubmitChanges() }. In this post I will erase it read more...

add a comment |category: |Views: 30

tags: another

.NET - Check/Uncheck all Items in an ASP.NET CheckBox List using jQuer(dotnetcurry.com)

submitted by mariotm82mariotm82(95) 3 years, 5 months ago

Check/Uncheck all Items in an ASP.NET CheckBox List using jQuery read more...

1 comment |category: |Views: 284

tags: another

LinqToSql dbml tuning(blog.dynback.com)

submitted by StackOverflowStackOverflow(200) 3 years, 5 months ago

Small usefull tips, to change some dbml long-names and manage options read more...

add a comment |category: |Views: 22

tags: another

Using MetaLinq to simulate NHbernate’s DetachedCriteria in EF(marcinbudny.blogspot.com)

submitted by busiorbusior(80) 3 years, 5 months ago

In this post I experiment with MetaLinq in order to pass data filter criteria from a client to a service read more...

add a comment |category: |Views: 29

tags: another

Howto make unique Repository for all LinqToSql entities (GetById part)(blog.dynback.com)

submitted by StackOverflowStackOverflow(200) 3 years, 5 months ago

Tutorial about howto make Rep<Person>.GetById(personId)! read more...

add a comment |category: |Views: 39

tags: another

C# String Extension - Repeat and Coalesce, with Linq(blog.dynback.com)

submitted by StackOverflowStackOverflow(200) 3 years, 6 months ago

Howto create lite String Extensions. Coalesce works great - if you want for example show Name, but if it is empty, show Email of user. Linq gaves possibility to do this in one line of code! Extensions - for ease of use. read more...

add a comment |category: |Views: 180

tags: another

JavaScript UI-components (Part 1)(blog.dynback.com)

submitted by StackOverflowStackOverflow(200) 3 years, 6 months ago

Series of articles, about different approaches to create JavaScript components. Howto operate between components. First article show: ideal scenario of cooperation between components and why use "classes" read more...

add a comment |category: |Views: 41

tags: another

Tip about jQuery $.extend(blog.dynback.com)

submitted by StackOverflowStackOverflow(200) 3 years, 6 months ago

The story, about how to use $.extend jQuery method, to derive classes read more...

add a comment |category: |Views: 1353

tags: another

New ASP.NET Charting Control(weblogs.asp.net)

submitted by craigtpcraigtp(683) 3 years, 6 months ago

From ScottGu's blog. Brand new, Free, ASP.NET 3.5 chart control. It looks very nice! read more...

1 comment |category: |Views: 890

tags: another

Reactive Programming in C#,F# & VB - Developing a game in Reactve LINQ(tomasp.net)

submitted by tomasptomasp(299) 3 years, 6 months ago

In this article, we'll implement a simple iteractve game using the Reactive LINQ project. The article shows that this way of handling events gives us amog other things a great degree of composability. read more...

add a comment |category: |Views: 67

tags: another