<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>52Ebook&#124;Free Ebook Download &#124; &#187; .NET</title>
	<atom:link href="http://www.52ebook.net/html/category/net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.52ebook.net</link>
	<description>Free Ebook Download  &#124;英文原版书籍下载链接收集</description>
	<lastBuildDate>Wed, 25 Aug 2010 15:25:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ASP.NET 3.5 Application Architecture and Design</title>
		<link>http://www.52ebook.net/html/asp-net-3-5-application-architecture-and-design.html</link>
		<comments>http://www.52ebook.net/html/asp-net-3-5-application-architecture-and-design.html#comments</comments>
		<pubDate>Mon, 21 Sep 2009 12:34:21 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C# ASP.NET3.5]]></category>

		<guid isPermaLink="false">http://www.52ebook.net/?p=1877</guid>
		<description><![CDATA[
In Detail
Application architecture is an essential skill for ASP.NET developers. It is always tempting to jump in and start coding, but planning your architecture early in the project will leave you with a solid application that scales well, is easy to modify and extend, and saves you time and effort later on. As businesses struggle [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1876" href="http://www.52ebook.net/html/asp-net-3-5-application-architecture-and-design.html/33m4aoh"><img class="aligncenter size-full wp-image-1876" title="33m4aoh" src="http://www.52ebook.net/wp-content/uploads/2009/09/33m4aoh.jpg" alt="33m4aoh" width="243" height="300" /></a></p>
<p><span><a name="indetail">In Detail</a></span></p>
<blockquote><p>Application architecture is an essential skill for ASP.NET developers. It is always tempting to jump in and start coding, but planning your architecture early in the project will leave you with a solid application that scales well, is easy to modify and extend, and saves you time and effort later on. As businesses struggle to control their costs, writing solid code that can be extended easily is becoming even more important.</p>
<p>This book takes a pragmatic approach to Application Architecture in ASP.NET 3.5. It presents a series of common architectural models, and shows how to select the best ones for your project and apply them.</p>
<p>The book begins by showing you how to use the main architectural models in your applications. You will see how to implement n-tier architectures, MVC, design patterns, and more. But this is no software engineering theory book – it is a practical, hands-on guide that shows you how to use these techniques in your software straight away. We then go on to build SOA (Service-Oriented Architecture) applications with the Windows Communication Framework (WCF). Finally the book contains some essential guidance on effective database design, and a chapter on localizing your applications.</p>
<p>This book is a great way to learn ASP.NET Architecture in a practical, hands-on way. It will also serve as a quick reference for improving your application design.<br />
<a href="http://www.packtpub.com/article/application-architecture-and-design-for-asp-.net-3.5-table-of-contents"><br />
</a></p></blockquote>
<p><span>What you will learn from this book</span></p>
<blockquote>
<ul>
<li>Explore different architectural options while creating web solutions – tiers, layers, and logical structuring</li>
<li>Master the concept of n-tier architecture and used design patterns in ASP.NET</li>
<li>Implement the new ASP.NET MVC design in your applications</li>
<li>Build an SOA application and see how WCF compliments it</li>
<li>Design scalable and maintainable applications</li>
<li>Deploy your localized applications and learn the best practices for your localization framework</li>
<li>Learn better database design that can go with your application</li>
<li>Explore best practices on how to globalize your commercial web applications</li>
</ul>
<p><span style="font-weight: bold;">Chapter 1:</span> Introduction to Architecture and Design. This chapter will introduce you to architecture and design in ASP.NET, including tiers, layers, and logical structuring.</p>
<p><span style="font-weight: bold;">Chapter 2:</span> 1-Tier 1-Layer Architecture in ASP.NET. This chapter discusses the advantages and disadvantages of using the simplest and easiest 1-tier, 1-layer default architecture in ASP.NET. Readers will also understand when and why we should use out-of-the-box data source controls, and how 1-tier and 1-layer style is tightly coupled and not flexible or scalable.</p>
<p><span style="font-weight: bold;">Chapter 3: </span>ER diagrams, Domain Model and n-Layer Architecture. This chapter discusses what an ER diagram is, the domain model, the basics of UML, what an n-layer design is, and how it increases flexibility and maintainability of the code compared to a 1-layer architecture. A sample project is explained with code in a 3-layer model. The drawbacks/limitations of this model are also discussed.</p>
<p><span style="font-weight: bold;">Chapter 4: </span>N-Tier Architecture. This chapter talks about n-tier architecture in ASP.NET and how to implement it. It also explains the Data Transfer objects and how to use them, 4-tier and 5-tier web solutions.</p>
<p><span style="font-weight: bold;">Chapter 5: </span>MVC Design and ASP.NET MVC Framework. In this chapter you will learn and understand what MVC design is and how ASP.NET MVC framework helps us quickly implement MVC design in our web applications.</p>
<p><span style="font-weight: bold;">Chapter 6:</span> Design Patterns. In this chapter you will learn how and when to use the most common design patterns in ASP.NET: Factory, Dependency Injection, Singleton, and others.</p>
<p><span style="font-weight: bold;">Chapter 7:</span> SOA and WCF. This chapter explains why we need SOA, explaining the advantages of SOA for a beginner. A sample project using SOA architecture is discussed. The chapter also teaches how the Windows Communication Framework compliments SOA.</p>
<p><span style="font-weight: bold;">Chapter 8: </span>Best Practices in Database Design. This chapter deals with the importance of a well designed database, balanced normalization, logical and physical models, tips and tricks for better database models.</p>
<p><span style="font-weight: bold;">Chapter 9: </span>Localization. This chapter covers localization for ASP.NET applications, deployment of localized applications, localization framework, and best practices.</p></blockquote>
<p><span>Approach</span></p>
<blockquote><p>This is a practical hands-on book with clear instructions and lot of code examples. It takes a simple approach, guiding you through different architectural topics using realistic sample projects.</p>
<p>A single project is implemented using different architectural styles to make the reader understand the details of each style. There are also many small independent code samples to explain design patterns, WCF, and localization.</p></blockquote>
<p><span>Who this book is written for</span></p>
<blockquote><p>This book is for people familiar with the ASP.NET framework using either C# or VB.NET. You don’t need to be an ASP.NET guru – the book is ideal for novice and intermediate developers.</p>
<p>If reading about application architecture usually confuses you or sends you to sleep, then this book will be perfect for you! In short, any ASP.NET programmer who is confused or disoriented reading different books or materials on architectures wondering how and what to implement in their application, will definitely benefit from this book!</p></blockquote>
<blockquote><p><a href="http://rapidshare.com/files/282918812/1847195504.rar">download</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/asp-net-3-5-application-architecture-and-design.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint 2007 Developer&#8217;s Guide to Business Data Catalog</title>
		<link>http://www.52ebook.net/html/sharepoint-2007-developers-guide-to-business-data-catalog-2.html</link>
		<comments>http://www.52ebook.net/html/sharepoint-2007-developers-guide-to-business-data-catalog-2.html#comments</comments>
		<pubDate>Fri, 11 Sep 2009 15:54:45 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.52ebook.net/?p=1857</guid>
		<description><![CDATA[
DESCRIPTION
The data locked in your organization's systems and databases is a precious—and sometimes untapped—resource. The SharePoint Business Data Catalog makes it easy to gather, analyze, and report on data from multiple sources, through SharePoint. Using standard web parts, an efficient management console, and a simple programming model, you can build sites, dashboards, and applications that [...]]]></description>
			<content:encoded><![CDATA[<h3><a rel="attachment wp-att-1858" href="http://www.52ebook.net/html/sharepoint-2007-developers-guide-to-business-data-catalog-2.html/edit_0509370acd000f4251medium-jpg"><img class="aligncenter size-full wp-image-1858" title="edit_0509370acd000f4251medium.jpg" src="http://www.52ebook.net/wp-content/uploads/2009/09/edit_0509370acd000f4251medium.jpg.png" alt="edit_0509370acd000f4251medium.jpg" width="239" height="300" /></a><small><code></code></small></h3>
<h3>DESCRIPTION</h3>
<p>The data locked in your organization&#8217;s systems and databases is a precious—and sometimes untapped—resource. The SharePoint Business Data Catalog makes it easy to gather, analyze, and report on data from multiple sources, through SharePoint. Using standard web parts, an efficient management console, and a simple programming model, you can build sites, dashboards, and applications that maximize this business asset.</p>
<p><em>SharePoint 2007 Developer&#8217;s Guide to Business Data Catalog</em> is a practical, example-rich guide to the features of the BDC and the techniques you need to build solutions for end users. The book starts with the basics—what the BDC is, what you can do with it, and how to pull together a BDC solution. With the fundamentals in hand, it explores the techniques and ideas you need to put BDC into use effectively in your organization.</p>
<p>Knowledge of SharePoint Server and WSS is required.</p>
<h3>WHAT&#8217;S INSIDE</h3>
<ul>
<li>The BDC Object Model</li>
<li>How to build BDC applications</li>
<li>BDC-driven search</li>
<li>Integrating with Office, CRM, and InfoPath</li>
</ul>
<h3>About the Authors</h3>
<p><strong>Brett Lonsdale</strong> and <strong>Nick Swan</strong> are the founders of Lightning Tools, a UK-based SharePoint consulting company specializing in the SharePoint Business Data Catalog.</p>
<p><a href="http://rapidshare.com/files/275853830/SharePoint_2007_Developer___s_Guide_to_Business_Data_Catalog.pdf">download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/sharepoint-2007-developers-guide-to-business-data-catalog-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint 2007 Developer&#8217;s Guide to Business Data Catalog</title>
		<link>http://www.52ebook.net/html/sharepoint-2007-developers-guide-to-business-data-catalog.html</link>
		<comments>http://www.52ebook.net/html/sharepoint-2007-developers-guide-to-business-data-catalog.html#comments</comments>
		<pubDate>Fri, 04 Sep 2009 13:35:56 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.52ebook.net/?p=1781</guid>
		<description><![CDATA[
Brett Lonsdale,NIck Swan &#8220;SharePoint 2007 Developer’s Guide to Business Data Catalog&#8221; 
Manning Publications &#124; 2009 &#124; ISBN: 1933988819 &#124; 304 pages &#124; PDF &#124; 17,9 MB
DESCRIPTION

The data locked in your organization&#8217;s systems and databases is a  precious—and sometimes untapped—resource. The SharePoint Business Data Catalog  makes it easy to gather, analyze, and report on [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1782" href="http://www.52ebook.net/html/sharepoint-2007-developers-guide-to-business-data-catalog.html/lonsdale_cover150"><img class="aligncenter size-full wp-image-1782" title="lonsdale_cover150" src="http://www.52ebook.net/wp-content/uploads/2009/09/lonsdale_cover150.jpg" alt="lonsdale_cover150" width="150" height="186" /></a></p>
<h3><strong>Brett Lonsdale,NIck Swan &#8220;SharePoint 2007 Developer’s Guide to Business Data Catalog&#8221; </strong><br />
Manning Publications | 2009 | ISBN: 1933988819 | 304 pages | PDF | 17,9 MB</h3>
<h3>DESCRIPTION</h3>
<div>
<p>The data locked in your organization&#8217;s systems and databases is a  precious—and sometimes untapped—resource. The SharePoint Business Data Catalog  makes it easy to gather, analyze, and report on data from multiple sources,  through SharePoint. Using standard web parts, an efficient management console,  and a simple programming model, you can build sites, dashboards, and  applications that maximize this business asset.</p>
<p><em>SharePoint 2007 Developer&#8217;s Guide to Business Data Catalog</em> is a  practical, example-rich guide to the features of the BDC and the techniques you  need to build solutions for end users. The book starts with the basics—what the  BDC is, what you can do with it, and how to pull together a BDC solution. With  the fundamentals in hand, it explores the techniques and ideas you need to put  BDC into use effectively in your organization.</p>
<p>Knowledge of SharePoint Server and WSS is required.</p>
<h3>WHAT&#8217;S INSIDE</h3>
<ul>
<li>The BDC Object Model</li>
<li>How to build BDC applications</li>
<li>BDC-driven search</li>
<li>Integrating with Office, CRM, and InfoPath</li>
</ul>
<h3>About the Authors</h3>
<p><strong>Brett Lonsdale</strong> and <strong>Nick Swan</strong> are the founders of Lightning  Tools, a UK-based SharePoint consulting company specializing in the SharePoint  Business Data Catalog.</p>
<p><a href="http://rapidshare.com/files/275053327/SharePoDev.rar ">download</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/sharepoint-2007-developers-guide-to-business-data-catalog.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET MVC in Action</title>
		<link>http://www.52ebook.net/html/asp-net-mvc-in-action.html</link>
		<comments>http://www.52ebook.net/html/asp-net-mvc-in-action.html#comments</comments>
		<pubDate>Fri, 04 Sep 2009 13:31:39 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://www.52ebook.net/?p=1777</guid>
		<description><![CDATA[

 Jeffrey Palermo,Ben Scheirman,Jimmy Bogard  &#8220;ASP.NET MVC in Action&#8221; 
Manning Publications &#124; 2009 &#124; ISBN: 1933988622 &#124; 275 pages &#124; PDF &#124; 12,9 MB
The Model-View-Controller pattern is widely accepted as a best practice for UI development. With Microsoft’s first release of an MVC framework for ASP.NET development, web development on the .NET framework is [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1778" href="http://www.52ebook.net/html/asp-net-mvc-in-action.html/palermo_cover150"><img class="aligncenter size-full wp-image-1778" title="palermo_cover150" src="http://www.52ebook.net/wp-content/uploads/2009/09/palermo_cover150.jpg" alt="palermo_cover150" width="150" height="186" /></a></p>
<div style="text-align: left;">
<div style="text-align: center;"><strong> Jeffrey Palermo,Ben Scheirman,Jimmy Bogard  &#8220;ASP.NET MVC in Action&#8221; </strong><br />
Manning Publications | 2009 | ISBN: 1933988622 | 275 pages | PDF | 12,9 MB</div>
<p>The Model-View-Controller pattern is widely accepted as a best practice for UI development. With Microsoft’s first release of an MVC framework for ASP.NET development, web development on the .NET framework is both simplified and more flexible. ASP.NET MVC in Action is an advanced guide to developing long-lived applications with the ASP.NET MVC framework. It moves past simple introductions and dives deep into architectural techniques that lead to maintainable web applications with the MVC pattern.</p>
<p>ASP.NET MVC in Action lays a flexible foundation based on Domain-driven design, the S.O.L.I.D. principles, TDD, and interface-based development. With best-practices woven into every chapter, the authors present the new ASP.NET MVC framework in a manner that leads to more maintainable .NET web applications.</p>
<p>This book assumes that readers are already experienced with ASP.NET development and C#. Numerous popular open-source libraries, such as MvcContrib, are referenced throughout, and the book comes with the full source to CodeCampServer, a user group conference organizing application.</p>
<p>About the Author<br />
All three authors are popular bloggers and Alt.Net developers. From Houston and Austin, TX, Jeffrey, Ben, and Jimmy are frequent user group and conference speakers. They are also committers to the open-source projects MvcContrib and CodeCampServer.</p>
<p>Jeffrey Palermo is the CTO of Headspring Systems in Austin, Texas. Jeffrey is an MCSD.NET, Microsoft Solutions Architect MVP, Agile Coach, Austin .Net User Group leader, and an INETA speaker. He is an ASP.NET expert and a co-founder of the MvcContrib project. His website, PartyWithPalermo.com was the first ASP.NET MVC application in production.</p>
<p>Ben Scheirman is a Principal Consultant with Sogeti in Houston, Texas. He studied computer science at the University of Houston and is a Certified ScrumMaster and Microsoft Certified Solution Developer. He enjoys speaking and blogging about Agile development topics in .NET.</p></div>
<p>Jimmy Bogard is a senior consultant with Headspring Systems in Austin, Texas. His focus is using .NET technologies together with Agile methodologies.</p>
<p><a href="http://rapidshare.com/files/275055047/ManninASP.rar "><strong>download</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/asp-net-mvc-in-action.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LINQ Quickly</title>
		<link>http://www.52ebook.net/html/linq-quickly.html</link>
		<comments>http://www.52ebook.net/html/linq-quickly.html#comments</comments>
		<pubDate>Sun, 26 Jul 2009 16:34:38 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://www.52ebook.net/?p=1432</guid>
		<description><![CDATA[
LINQ Quickly
Packt Publishing &#124; 2007-11-24 &#124; ISBN: 1847192548 &#124; 252 pages &#124; PDF &#124; 4 MB
This book gets you started with LINQ and shows how it will make your programming life easier by making use of new features from the .NET Framework 3.0. This book is split into seven chapters, each of which is dedicated [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1433" href="http://www.52ebook.net/html/linq-quickly.html/000e6c2e_medium"><img class="aligncenter size-full wp-image-1433" title="000e6c2e_medium" src="http://www.52ebook.net/wp-content/uploads/2009/07/000e6c2e_medium.jpeg" alt="000e6c2e_medium" width="232" height="300" /></a></p>
<p><strong>LINQ Quickly</strong><br />
Packt Publishing | 2007-11-24 | ISBN: 1847192548 | 252 pages | PDF | 4 MB<br />
This book gets you started with LINQ and shows how it will make your programming life easier by making use of new features from the .NET Framework 3.0. This book is split into seven chapters, each of which is dedicated to presenting a feature of LINQ and its usage in real-life scenarios. Language Integrated Query (LINQ) is a new feature in Visual Studio 2008 that extends its query capabilities, using C# and Visual Basic. Visual Studio 2008 comes with LINQ provider assemblies that enable the use of LINQ with data sources such as in-memory collections, SQL relational databases, ADO.NET Datasets, XML documents, etc. In Visual Studio 2008, Visual C# and Visual Basic are the languages that implement the LINQ language extensions. LINQ language extensions use the new standard query operators API, which is the query language for any collection that implements IEnumerable.  </p>
<p><strong><a href="http://www.filefactory.com/file/ahf679e/n/linq_quickly_zip">download</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/linq-quickly.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Expert Cube Development with Microsoft SQL Server 2008 Analysis Services</title>
		<link>http://www.52ebook.net/html/expert-cube-development-with-microsoft-sql-server-2008-analysis-services.html</link>
		<comments>http://www.52ebook.net/html/expert-cube-development-with-microsoft-sql-server-2008-analysis-services.html#comments</comments>
		<pubDate>Fri, 24 Jul 2009 05:09:52 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[sqlserver]]></category>

		<guid isPermaLink="false">http://www.52ebook.net/?p=1350</guid>
		<description><![CDATA[
Expert Cube Development with Microsoft SQL Server 2008 Analysis Services
Product Description
Design and implement fast, scalable and maintainable cubes

A real-world guide to designing cubes with Analysis Services 2008
Model dimensions and measure groups in BI Development Studio
Implement security, drill-through, and MDX calculations

 

Learn how to deploy, monitor, and performance-tune your cube
Filled with best practices and useful hints [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1351" href="http://www.52ebook.net/html/expert-cube-development-with-microsoft-sql-server-2008-analysis-services.html/51dtxqmfe8l-_sl500_aa240_"><img class="aligncenter size-full wp-image-1351" title="51DtxqMfE8L._SL500_AA240_" src="http://www.52ebook.net/wp-content/uploads/2009/07/51DtxqMfE8L._SL500_AA240_.jpg" alt="51DtxqMfE8L._SL500_AA240_" width="240" height="240" /></a></p>
<p>Expert Cube Development with Microsoft SQL Server 2008 Analysis Services</p>
<p><strong>Product Description</strong></p>
<p>Design and implement fast, scalable and maintainable cubes</p>
<ul>
<li>A real-world guide to designing cubes with Analysis Services 2008</li>
<li>Model dimensions and measure groups in BI Development Studio</li>
<li>Implement security, drill-through, and MDX calculations</li>
</ul>
<p><span id="more-31681"> </span></p>
<ul>
<li>Learn how to deploy, monitor, and performance-tune your cube</li>
<li>Filled with best practices and useful hints and tips</li>
</ul>
<p><a href="http://rapidshare.com/files/259296240/47197221.rar" target="_blank">download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/expert-cube-development-with-microsoft-sql-server-2008-analysis-services.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# in Depth</title>
		<link>http://www.52ebook.net/html/c-in-depth.html</link>
		<comments>http://www.52ebook.net/html/c-in-depth.html#comments</comments>
		<pubDate>Sat, 18 Jul 2009 12:52:55 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://52ebook.net/?p=1253</guid>
		<description><![CDATA[
Table of Contents, MEAP Chapters &#38; Resources



Table of Contents
 Resources



 1: The changing face of C# development
 2: Core foundations: Building on  C# 1
 3: Parameterized typing with generics
 4: Saying  nothing with nullable types
 5: Fast-tracked delegates
 6: Implementing iterators the easy way
 7: Concluding C# 2: the final  features
 8: [...]]]></description>
			<content:encoded><![CDATA[<h3><a rel="attachment wp-att-1254" href="http://52ebook.net/html/c-in-depth.html/skeet2_cover150"><img class="aligncenter size-full wp-image-1254" title="skeet2_cover150" src="http://52ebook.net/wp-content/uploads/2009/07/skeet2_cover150.jpg" alt="skeet2_cover150" width="150" height="186" /></a></h3>
<h3>Table of Contents, MEAP Chapters &amp; Resources</h3>
<table border="0" cellspacing="0" cellpadding="5">
<tbody>
<tr>
<td valign="top"><strong>Table of Contents</strong></td>
<td valign="top"><strong> Resources</strong></td>
</tr>
<tr>
<td valign="top"><!--br><b>&nbsp;1:</b> <a href="bibeault_MEAP_free_ch01.pdf" mce_href="bibeault_MEAP_free_ch01.pdf" target="_blank">Introducing jQuery</a> &#8211; <font color="blue">FREE</font--><br />
<strong> 1:</strong> The changing face of C# development<br />
<strong> 2:</strong> Core foundations: Building on  C# 1<br />
<strong> 3:</strong> Parameterized typing with generics<br />
<strong> 4:</strong> Saying  nothing with nullable types<br />
<strong> 5:</strong> Fast-tracked delegates<br />
<strong> 6:</strong> Implementing iterators the easy way<br />
<strong> 7:</strong> Concluding C# 2: the final  features<br />
<strong> 8:</strong> Cutting fluff with a smart compiler<br />
<strong> 9:</strong> Lambda expressions and expression trees<br />
<strong>10:</strong> Extension methods<br />
<strong>11:</strong> Query expressions and LINQ to Objects<br />
<strong>12:</strong> LINQ beyond  collections<br />
<strong>13:</strong> More minor tweaks<br />
<strong>14:</strong> Dynamic binding in a  static language &#8211; <span style="color: blue;">AVAILABLE</span><br />
<strong>15:</strong> Framework  features which change coding styles<br />
<strong>16:</strong> Whither now?</td>
<td valign="top">
<ul>
<li><a href="http://www.manning-sandbox.com/forum.jspa?forumID=569">Author  Online</a><br />
Go here to discuss this title with the author <!--li><a href="http://code.google.com/p/muleinaction/" mce_href="http://code.google.com/p/muleinaction/" target="_blank">Source code</a></li--></li>
</ul>
</td>
</tr>
</tbody>
</table>
<p><!--h3>DESCRIPTION</h3>
<p>Games are the fastest-growing and stickiest form of entertainment. For a website, games offer powerful potential to acquire new users, build engagement, and enhance revenue. Implementing games in a website can be complicated, though. There are hundreds of technical and process options to choose from, and the landscape is constantly shifting.</p>
<p><i>C# in Depth, Second Edition: Building Games into Your Site</i> shows web developers how to incorporate games into websites. This book will help you decode the possibilities and provide a series of proven and tangible strategies that any web developer, producer, or product manager can use to implement games in their website. Whether you&#8217;re looking to make games the centerpiece of your site, an added-value feature, or you just want to engage and excite your users, <i>C# in Depth, Second Edition</i> will help you develop a strategy that harnesses the power of games.</p>
<p>Through this book, you will take away an in-depth understanding of the current state of the art in game and web planning and integration methodologies. It begins by presenting an understanding of basic &#8220;funware&#8221; principles &#8211; or how non-designers can use games to further business objectives. Powerful funware designs like frequent flyer programs, casino games, and leaderboard/ladders will be deconstructed and componentized so that you can leverage their strengths for your specific site and business objectives.</p>
<p>You&#8217;ll then investigate the three basic recipes for melding games with the web, and look at specific examples of integration approaches that have been successfully deployed across various industries. Finally, you&#8217;ll examine social networking considerations and look at code examples.</p>
<p>Whether you&#8217;re building a business or consumer site, games and funware design can be a powerful weapon in your battle for user engagement, stickiness, and revenue. <i>C# in Depth, Second Edition</i> is the field guide that gives you the best tactics, techniques, and strategies for winning the war.</p>
<h3>WHAT&#8217;S INSIDE</h3>
<ul>
<li>Understanding funware and game design</li>
<li>Principal funware designs: casinos frequent flyer programs, leaderboards</li>
<li>Matching games to your business objectives</li>
<li>Recipes for implementing games on your site</li>
<li>Games, social networking and you</li>
<li>Code examples</li>
</ul>
<h3>About the Author</h3>
<p><b>Gabe skeet2</b> is a ten-year games industry veteran, sought-after strategist, popular lecturer, and serial entrepreneur. skeet2 is the co-founder of the breakthrough funware startup, rmbr, whose social game/web mashups and mobile exchange apps have received both critical and popular acclaim. In the past decade, Gabe also helped found Trymedia Systems and was an executive for the Game Developers Conference, Gamasutra.com and Game Developer magazine. He currently sits on the advisory board of four fantastic startups and is a frequent editorial contributor on the subject of game industry trends and new game design theory. skeet2 lives in New York City and really misses (good) Mexican food.</p>
<p><b>Christopher Cunningham</b> is the CTO and Co-Founder of rmbr. Christopher&#8217;s past experiences include helping found TrekMail, a breakthrough mobile email/text application that was sold to Visto in 2005, as well as deep expertise with agile development processes and distributed team management. Christopher is also an avid digital photographer and frequent writer/contributor to numerous publications and conferences. He divides his time between Europe and the US which is marginally more glamorous than it sounds.</p-->
<h3>About the Early Access Version</h3>
<p>This Early Access version of <em>C# in Depth, Second Edition</em> enables you  to receive new chapters as they are being written. You can also interact with  the authors to ask questions, provide feedback and errata, and help shape the  final manuscript on the</p>
<p><a href="http://rapidshare.com/files/165771127/Manning.C.Sharp.in.Depth.emeien_downarchive.rar" target="_blank"><strong>download</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/c-in-depth.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NHibernate in Action</title>
		<link>http://www.52ebook.net/html/nhibernate-in-action.html</link>
		<comments>http://www.52ebook.net/html/nhibernate-in-action.html#comments</comments>
		<pubDate>Sat, 18 Jul 2009 12:48:49 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[nhibernate]]></category>

		<guid isPermaLink="false">http://52ebook.net/?p=1248</guid>
		<description><![CDATA[
DESCRIPTION

In the classic style of Manning&#8217;s &#8220;In Action&#8221; series, NHibernate in  Action introduces .NET developers to the NHibernate Object/Relational  Mapping tool. As NHibernate is a port of Hibernate from Java to .NET, the book  is based on Manning&#8217;s bestselling Hibernate in Action.
NHibernate in Action begins by describing how to implement persistence  [...]]]></description>
			<content:encoded><![CDATA[<h3><a rel="attachment wp-att-1250" href="http://52ebook.net/html/nhibernate-in-action.html/kuate_cover150-2"><img class="aligncenter size-full wp-image-1250" title="kuate_cover150" src="http://52ebook.net/wp-content/uploads/2009/07/kuate_cover1501.jpg" alt="kuate_cover150" width="150" height="188" /></a></h3>
<h3>DESCRIPTION</h3>
<div>
<p>In the classic style of Manning&#8217;s &#8220;In Action&#8221; series, <em>NHibernate in  Action</em> introduces .NET developers to the NHibernate Object/Relational  Mapping tool. As NHibernate is a port of Hibernate from Java to .NET, the book  is based on Manning&#8217;s bestselling <a href="/bauer">Hibernate in Action</a>.</p>
<p><em>NHibernate in Action</em> begins by describing how to implement persistence  in a layered .NET application. The book then quickly springs into action by  introducing NHibernate through a classic &#8220;Hello World&#8221; example. It explains how  to configure NHibernate to specify the mapping information between business  objects and database tables, and then explores the internal architecture of  NHibernate. A complete example application is progressively built with Agile  methodologies in mind, which shows readers all kinds of entity and relationship  mappings and how to perform CRUD operations. The book also covers advanced  techniques like caching, concurrency access, and isolation levels. The Hibernate  Query Language (HQL) and criteria query APIs are thoroughly detailed with  optimization tips.</p>
<p>The last chapters of this book discuss various development scenarios, how to  implement the layers of an NHibernate application (covering Windows and Web  development), and which tools are available for these tasks. They also provide  some solutions for data-binding objects to .NET GUI controls, integrating  services, and interacting with components using DataSets. Finally, they explain  how to build a complex application involving advanced session management and  distributed transactions.</p>
<h3>WHAT&#8217;S INSIDE:</h3>
<ul>
<li>Object/Relational Mapping for .NET</li>
<li>NHibernate configuration, mapping, and query APIs</li>
<li>Development processes for the domain model and data-binding</li>
<li>Advanced session management and distributed transactions</li>
<li>Using NHibernate in real-world projects</li>
</ul>
<h3>About the Authors</h3>
<p><strong>Pierre Henri Kuat�</strong> is one of the main developers on the NHibernate  project team, author of the NHibernate.Mapping.Attributes library, and a major  contributor to the NHibernate forum. He&#8217;s responsible for managing the  NHibernate documentation, website, and forum on the Hibernate.org site. He  started using NHibernate more than two years ago in commercial development.</p>
<p><strong>Tobin Harris</strong> has worked with NHibernate since it was in early Beta.  His passion is tools and practices that help build quality software at high  speeds. As an independent consultant and entrepreneur, Tobin works with  companies across the globe in various sectors including banking, personal  finance, healthcare, software components and new media. In 2001, Tobin was the  founder of the Open Source SqlBuddy project. Subsequently he has worked in  partnership with Frost Innovation on Gaia Ajax Widgets, an Open Source Ajax  suite for .NET. Tobin obtained his degree in Software Engineering at Leeds  Metropolitan University, and continues to work and live in Leeds, UK.</p>
<p><strong>Christian Bauer</strong> is a member of the Hibernate developer team and a  trainer, consultant, and product manager for Hibernate, EJB 3.0, and JBoss Seam  at JBoss. He is the lead author of <em>Hibernate in Action</em> and <em>Java  Persistence with Hibernate</em>.</p>
<p><strong>Gavin King</strong> is a lead developer at JBoss, the creator of Hibernate, and  a member of the EJB 3.0 (JSR 220) expert group. He also leads the Web Beans JSR  299, a standardization effort involving Hibernate concepts, JSF, and EJB  3.0.</p>
<p><strong><a href="http://www.megaupload.com/?d=MKZ77A3D" target="_blank">download</a></strong></div>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/nhibernate-in-action.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LINQ in Action</title>
		<link>http://www.52ebook.net/html/linq-in-action.html</link>
		<comments>http://www.52ebook.net/html/linq-in-action.html#comments</comments>
		<pubDate>Fri, 17 Jul 2009 15:16:58 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://52ebook.net/?p=1227</guid>
		<description><![CDATA[
By Fabrice Marguerie, Steve Eichert, Jim Wooley &#8220;LINQ in Action&#8221;
Publisher: Manning Publications &#124; 600 Pages &#124; 2008-01-15 &#124; ISBN: 1933988169 &#124; 7.54 Mb &#124; PDF
LINQ, Language INtegrated Query, is a new extension to the Visual Basic and C# programming languages designed to simplify data queries and database interaction. It addreses O/R mapping issues by making [...]]]></description>
			<content:encoded><![CDATA[<div><a rel="attachment wp-att-1228" href="http://52ebook.net/html/linq-in-action.html/000d2a2e_medium"><img class="aligncenter size-full wp-image-1228" title="000d2a2e_medium" src="http://52ebook.net/wp-content/uploads/2009/07/000d2a2e_medium.jpeg" alt="000d2a2e_medium" width="239" height="300" /></a></div>
<div><strong>By Fabrice Marguerie, Steve Eichert, Jim Wooley &#8220;LINQ in Action&#8221;</strong><br />
Publisher: Manning Publications | 600 Pages | 2008-01-15 | ISBN: 1933988169 | 7.54 Mb | PDF</div>
<p>LINQ, Language INtegrated Query, is a new extension to the Visual Basic and C# programming languages designed to simplify data queries and database interaction. It addreses O/R mapping issues by making query operations like SQL statements part of the programming language. It also offers built-in support for querying in-memory collections like arrays or lists, XML, DataSets, and relational databases.</p>
<p>LINQ in Action is a fast-paced, comprehensive tutorial for professional developers. This book explores what can be done with LINQ, shows how it works in an application, and addresses the emerging best practices. It presents the general purpose query facilities offered by LINQ in the upcoming C# 3.0 and VB.NET 9.0 languages. A running example introduces basic LINQ concepts. You&#8217;ll then learn to query unstructured data using LINQ to XML and relational data with LINQ to SQL. Finally, you&#8217;ll see how to extend LINQ for custom applications.</p>
<p>LINQ in Action will guide you along as you explore this new world of lambda expressions, query operators, and expression trees. As well, you&#8217;ll explore the new features of C# 3.0, VB.NET 9.0. The book is very practical, anchoring each new idea with running code. Whether you want to use LINQ to query objects, XML documents, or relational databases, you will find all the information you need to get started</p>
<p>But LINQ in Action does not stop at the basic code. This book also shows you how LINQ can be used for advanced processing of data, including coverage of LINQ&#8217;s extensibility, which allows querying more data sources than those supported by default. All code samples are built on a concrete business case. The running example, LinqBooks, is a personal book cataloging system that shows you how to create LINQ applications with Visual Studio 2008.</p>
<p><a href="http://rapidshare.com/files/237694694/Manning_LINQ_in_Action.rar" target="_blank">download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/linq-in-action.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pro LINQ: Language Integrated Query in C# 2008</title>
		<link>http://www.52ebook.net/html/pro-linq-language-integrated-query-in-c-2008-2.html</link>
		<comments>http://www.52ebook.net/html/pro-linq-language-integrated-query-in-c-2008-2.html#comments</comments>
		<pubDate>Fri, 17 Jul 2009 15:15:40 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://52ebook.net/?p=1223</guid>
		<description><![CDATA[
 Joseph C. Rattz, &#8220;Pro LINQ: Language Integrated Query in C# 2008&#8243; 
Apress &#124; 2007-11-19 &#124; ISBN:1590597893 &#124; 600 pages &#124; PDF &#124; 7,2 MB
LINQ is the project name for a set of extensions to the .NET Framework that provide a generic approach to querying data from different data sources. LINQ will premier in Visual [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1224" href="http://52ebook.net/html/pro-linq-language-integrated-query-in-c-2008-2.html/000acc41_medium"><img class="aligncenter size-full wp-image-1224" title="000acc41_medium" src="http://52ebook.net/wp-content/uploads/2009/07/000acc41_medium.jpeg" alt="000acc41_medium" width="227" height="300" /></a></p>
<div><strong> Joseph C. Rattz, &#8220;Pro LINQ: Language Integrated Query in C# 2008&#8243; </strong><br />
Apress | 2007-11-19 | ISBN:1590597893 | 600 pages | PDF | 7,2 MB</div>
<p>LINQ is the project name for a set of extensions to the .NET Framework that provide a generic approach to querying data from different data sources. LINQ will premier in Visual Studio 2008, and will become the next must-have skill for .NET developers. For more information about LINQ, you can check out the author抯 portal at www.linqdev.com.<br />
Pro LINQ: Language Integrated Query in C# 2008 is all about code.<br />
Literally, this book starts with code and ends with code. In most books, the author shows the simplest example demonstrating how to use a method, but they so rarely show how to use the more complex prototypes. Pro LINQ: Language Integrated Query in C# 2008 is different. Demonstrating the overwhelming majority of LINQ operators and protoypes, it is a veritable treasury of LINQ examples.<br />
Rather than obscure the relevant LINQ principles in code examples by focusing on a demonstration application you have no interest in writing, Pro LINQ: Language Integrated Query in C# 2008 cuts right to the chase of each LINQ operator, method, or class. However, where complexity is necessary to truly demonstrate an issue, the examples are right there in the thick of it. For example, code samples demonstrating how to handle concurrency conflicts actually create concurrency conflicts so you can step through the code and see them unfold.<br />
Most books tell you about the simple stuff, while few books warn you of the pitfalls. Where Pro LINQ: Language Integrated Query in C# 2008 returns your investment is in the hours, and sometimes days, spent by the author determining why something may not work as expected. Sometimes this results in an innocent looking paragraph that may take you a minute to read and understand, but took days to research and explain.<br />
Face it, most technical books while informative, are dull. LINQ need not be dull. Written with a sense of humor, Pro LINQ: Language Integrated Query in C# 2008 will attempt to entertain you on your journey through the wonderland of LINQ and C# 2008.</p>
<div><a href="http://depositfiles.com/files/jp5puvvt1">download</a><br />
<strong> </strong></div>
<div><a href="http://depositfiles.com/files/jp5puvvt1" target="_blank"> </a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/pro-linq-language-integrated-query-in-c-2008-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LINQ Pocket Reference</title>
		<link>http://www.52ebook.net/html/linq-pocket-reference.html</link>
		<comments>http://www.52ebook.net/html/linq-pocket-reference.html#comments</comments>
		<pubDate>Fri, 17 Jul 2009 15:13:07 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://52ebook.net/?p=1219</guid>
		<description><![CDATA[
 Joseph Albahari, Ben Albahari 揕INQ Pocket Reference&#8221; 
O&#8217;Reilly Media, Inc. &#124; 2008-02-26 &#124; ISBN:0596519249 &#124; CHM &#124; 172 pages &#124; 1,7 Mb
Ready to take advantage of LINQ with C# 3.0? This guide has the detail you need to grasp Microsoft&#8217;s new querying technology, and concise explanations to help you learn it quickly. And once [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1220" href="http://52ebook.net/html/linq-pocket-reference.html/510ovmc4j7l-jpg_"><img class="aligncenter size-full wp-image-1220" title="510ovMc4j7L.jpg_" src="http://52ebook.net/wp-content/uploads/2009/07/510ovMc4j7L.jpg_.jpg" alt="510ovMc4j7L.jpg_" width="182" height="300" /></a><br id="__mce" /></p>
<div><strong> Joseph Albahari, Ben Albahari 揕INQ Pocket Reference&#8221; </strong><br />
O&#8217;Reilly Media, Inc. | 2008-02-26 | ISBN:0596519249 | CHM | 172 pages | 1,7 Mb</div>
<p>Ready to take advantage of LINQ with C# 3.0? This guide has the detail you need to grasp Microsoft&#8217;s new querying technology, and concise explanations to help you learn it quickly. And once you begin to apply LINQ, the book serves as an on-the-job reference when you need immediate reminders. All the examples in the LINQ Pocket Reference are preloaded into LINQPad, the highly praised utility that lets you work with LINQ interactively. Created by the authors and free to download, LINQPad will not only help you learn LINQ, it will have you thinking in LINQ. This reference explains: LINQ&#8217;s key concepts, such as deferred execution, iterator chaining, and type inference in lambda expressions The differences between local and interpreted queries C# 3.0&#8217;s query syntax in detail-including multiple generators, joining, grouping, query continuations, and more Query syntax versus lambda syntax, and mixed syntax queries Composition and projection strategies for complex queries All of LINQ&#8217;s 40-plus query operators How to write efficient LINQ to SQL queries How to build expression trees from scratch All of LINQ to XML&#8217;s types and their advanced use LINQ promises to be the locus of a thriving ecosystem for many years to come. This small book gives you a huge head start. &#8220;The authors built a tool (LINQPad) that lets you experiment with LINQ interactively in a way that the designers of LINQ themselves don&#8217;t support, and the tool has all kinds of wonderful features that LINQ, SQL and Regular Expression programmers alike will want to use regularly long after they&#8217;ve read the book.&#8221; -Chris Sells, Connected Systems Program Manager, Microsoft</p>
<div><a href="http://depositfiles.com/files/4093651" target="_blank"><br />
<strong> depositfiles.com </strong> </a></div>
<div><a href="http://w16.easy-share.com/1699842757.html" target="_blank"><br />
<strong> easy-share </strong></a><a href="http://w16.easy-share.com/1699842757.html" target="_blank"> </a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/linq-pocket-reference.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LINQ Unleashed: for C#</title>
		<link>http://www.52ebook.net/html/linq-unleashed-for-c.html</link>
		<comments>http://www.52ebook.net/html/linq-unleashed-for-c.html#comments</comments>
		<pubDate>Fri, 17 Jul 2009 15:11:08 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://52ebook.net/?p=1211</guid>
		<description><![CDATA[
Paul Kimmel, &#8220;LINQ Unleashed: for C#&#8221;
Sams &#124; ISBN: 0672329832 &#124; July 24, 2008 &#124; 552 pages &#124; PDF &#124; ~5MB
Microsoft抯 highly anticipated LINQ query technology makes it easy to retrieve any information programmatically from any data source, no matter where it comes from or how it抯 stored. Using LINQ, developers can query objects, relational databases, [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1212" href="http://52ebook.net/html/linq-unleashed-for-c.html/00092a9b_medium"><img class="aligncenter size-full wp-image-1212" title="00092a9b_medium" src="http://52ebook.net/wp-content/uploads/2009/07/00092a9b_medium.jpeg" alt="00092a9b_medium" width="240" height="240" /></a></p>
<p><strong>Paul Kimmel, &#8220;LINQ Unleashed: for C#&#8221;</strong><br />
Sams | ISBN: 0672329832 | July 24, 2008 | 552 pages | PDF | ~5MB<br />
Microsoft抯 highly anticipated LINQ query technology makes it easy to retrieve any information programmatically from any data source, no matter where it comes from or how it抯 stored. Using LINQ, developers can query objects, relational databases, XML documents, and ADO.NET datasets&#8211;and do it all directly from C# 3.0, leveraging the powerful capabilities of LINQ. This is a definitive guide to getting real-world results with LINQ, using C# 3.0 and Visual Studio 2008. In LINQ Unleashed, Microsoft MVP Paul Kimmel covers every facet of LINQ programming, showing how LINQ can help you dramatically improve your productivity and build more reliable, maintainable applications.</p>
<p><a href="http://rapidshare.com/files/146063594/Sams.LINQ.Unleashed.for.C.Sharp.Jul.2008.eBook-BBL.rar" target="_blank"><strong>Download from RapidShare</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/linq-unleashed-for-c.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ADO.NET 3.5 Cookbook, Second Edition</title>
		<link>http://www.52ebook.net/html/adonet-35-cookbook-edition.html</link>
		<comments>http://www.52ebook.net/html/adonet-35-cookbook-edition.html#comments</comments>
		<pubDate>Thu, 16 Jul 2009 09:32:03 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ADO.NET]]></category>

		<guid isPermaLink="false">http://52ebook.net/?p=1113</guid>
		<description><![CDATA[
Description
The new edition of this Cookbook gives you more than 200 coding solutions and best practices for real problems you&#8217;re likely to face with this technology using Visual Studio 2008 and the .NET 3.5 platform. Organized to help you find the topic and specific recipe you need quickly and easily, this book also offers clear [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1114" href="http://52ebook.net/16/adonet-35-cookbook-edition.html/cat-3"><img class="aligncenter size-full wp-image-1114" title="cat" src="http://52ebook.net/wp-content/uploads/2009/07/cat2.gif" alt="cat" width="180" height="236" /></a></p>
<p><span>Description</span></p>
<p>The new edition of this Cookbook gives you more than 200 coding solutions and best practices for real problems you&#8217;re likely to face with this technology using Visual Studio 2008 and the .NET 3.5 platform. Organized to help you find the topic and specific recipe you need quickly and easily, this book also offers clear explanations of how and why each code solution works and warns you of potential pitfalls.</p>
<p><a id="fulldescButton" onclick="toggleSheet('fulldesc'); return true" href="http://oreilly.com/catalog/9780596101404/#top"><br />
</a></p>
<p>This guide is strikingly different from other books on Microsoft ADO.NET. Rather than load you down with theory, the new edition of <em>ADO.NET 3.5 Cookbook</em> gives you more than 200 coding solutions and best practices for real problems you&#8217;re likely to face with this technology using Visual Studio 2008 and the .NET 3.5 platform.</p>
<p>Organized to help you find the topic and specific recipe you need quickly and easily, this book is more than just a handy compilation of cut-and-paste C# code. <em>ADO.NET 3.5 Cookbook</em> also offers clear explanations of how and why each code solution works, and warns you of potential pitfalls so you can learn to adapt the book&#8217;s problem-solving techniques to different situations.</p>
<p>This collection of timesaving recipes covers vital topics including:</p>
<ul>
<li>Connecting to data</li>
<li>Retrieving and managing data</li>
<li>Transforming and analyzing data</li>
<li>Modifying data</li>
<li>Binding data to .NET user interfaces</li>
<li>Optimizing .NET data access</li>
<li>Enumerating and maintaining database objects</li>
<li>Maintaining database integrity</li>
</ul>
<p>Ideal for ADO.NET programmers at all levels, from the relatively inexperienced to the most sophisticated, this new edition covers the significant 3.5 upgrade, including new programming tools such as LINQ. <em>ADO.NET 3.5 Cookbook</em> offers a painless way for those of you who prefer to learn by doing when it comes to expanding your skills and productivity.</p>
<p><a href="http://rapidshare.com/files/103430790/0596101406.zip" target="_blank">Download</a></p>
<p><a href="http://xinio.info/?http://www.mediafire.com/?m2oyrrldomj" target="_blank">Link 2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/adonet-35-cookbook-edition.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# 3.0 Pocket Reference, Second Edition</title>
		<link>http://www.52ebook.net/html/30-pocket-reference-edition.html</link>
		<comments>http://www.52ebook.net/html/30-pocket-reference-edition.html#comments</comments>
		<pubDate>Thu, 16 Jul 2009 04:42:24 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://52ebook.net/?p=1103</guid>
		<description><![CDATA[
Description
For busy programmers who want a succinct and yet readable guide to C# 3.0 and LINQ, C# 3.0 Pocket Reference tells you exactly what you need to know, without long introductions or bloated samples. Its tightly focused, highly practical, and covers more ground than many of the big books on C#.

53c5d5bc
This book is for busy [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1104" href="http://52ebook.net/16/30-pocket-reference-edition.html/cat-2"><img class="aligncenter size-full wp-image-1104" title="cat" src="http://52ebook.net/wp-content/uploads/2009/07/cat1.gif" alt="cat" width="180" height="296" /></a></p>
<p><span>Description</span></p>
<p>For busy programmers who want a succinct and yet readable guide to C# 3.0 and LINQ, <em>C# 3.0 Pocket Reference</em> tells you exactly what you need to know, without long introductions or bloated samples. Its tightly focused, highly practical, and covers more ground than many of the big books on C#.<br />
<a id="fulldescButton" onclick="toggleSheet('fulldesc'); return true" href="http://oreilly.com/catalog/9780596519223/#top"><br />
</a>53c5d5bc</p>
<p>This book is for busy programmers who want a succinct and yet readable guide to C# 3.0 and LINQ. <em>C# 3.0 Pocket Reference</em> tells you exactly what you need to know, without long introductions or bloated samples.</p>
<p>Despite its conciseness, this book doesn&#8217;t skimp on depth or detail, and embraces the conceptual challenges in learning C# 3.0 and LINQ. Tightly focused and highly practical, this pocket reference covers more ground than many of the big books on C#.</p>
<p><em>C# 3.0 Pocket Reference</em> includes plenty of illustrations and code examples to explain:</p>
<ul>
<li>Features new to C# 3.0, such as lambda expressions, anonymous types, automatic properties, and more</li>
<li>All aspects of C# syntax, predefined types, expressions, and operators</li>
<li>Creating classes, structs, delegates and events, enums, generics and constraints, exception handling, and iterators</li>
<li>The subtleties of boxing, operating overloading, delegate covariance, extension method resolution, interface reimplementation, nullable types, and operating lifting</li>
<li>LINQ, starting with the principles of sequences, deferred execution and standard query operators, and finishing with a complete reference to query syntax-including multiple generators, joining, grouping, and query continuations</li>
<li>Consuming, writing, and reflecting on custom attributes</li>
</ul>
<p>You&#8217;ll also find chapters on unsafe code and pointers, preprocessor directives, XML documentation, and a framework overview. If you&#8217;re already familiar with Java, C++, or an earlier version of C#, <em>C# 3.0 Pocket Reference</em> is an ideal choice.</p>
<p>No other book or online resource can get you up to speed so quickly.</p>
<p><a href="http://rapidshare.com/files/99301379/C.Sharp.3.0.Pocket.Reference.rar" target="_blank">Download</a></p>
<p><a href="http://depositfiles.com/files/4093305" target="_blank">Link 2</a></p>
<p><a href="http://w15.easy-share.com/1699842645.html" target="_blank">Link 3</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/30-pocket-reference-edition.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programming WCF Services</title>
		<link>http://www.52ebook.net/html/programming-wcf-services.html</link>
		<comments>http://www.52ebook.net/html/programming-wcf-services.html#comments</comments>
		<pubDate>Thu, 16 Jul 2009 04:33:12 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://52ebook.net/?p=1092</guid>
		<description><![CDATA[
Description
Programming WCF Services is the authoritative, bestselling introduction to Microsoft&#8217;s unified platform for developing service-oriented applications (SOA) on Windows. This relentlessly practical book provides insight, not documentation, to help you learn the topics and skills you need for building WCF-based applications. Written by Microsoft software legend Juval Lowy, this new edition is revised for the [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1094" href="http://52ebook.net/16/programming-wcf-services.html/cat"><img class="aligncenter size-full wp-image-1094" title="cat" src="http://52ebook.net/wp-content/uploads/2009/07/cat.gif" alt="cat" width="180" height="236" /></a></p>
<p><span>Description</span></p>
<p><em>Programming WCF Services</em> is the authoritative, bestselling introduction to Microsoft&#8217;s unified platform for developing service-oriented applications (SOA) on Windows. This relentlessly practical book provides insight, not documentation, to help you learn the topics and skills you need for building WCF-based applications. Written by Microsoft software legend Juval Lowy, this new edition is revised for the latest productivity-enhancing features of C# 3.0 and the .NET 3.5 SP1 Framework.<br />
<a id="fulldescButton" onclick="toggleSheet('fulldesc'); return true" href="http://oreilly.com/catalog/9780596521301/#top"><br />
</a></p>
<div id="fulldesc"><em>Programming WCF Services</em> is the authoritative, bestselling introduction to Microsoft&#8217;s unified platform for developing service-oriented applications (SOA) on Windows. Hailed as the most definitive treatment of WCF available, this relentlessly practical book provides insight, not documentation, to help you learn the topics and skills you need for building WCF-based applications that are maintainable, extensible, and reusable.</p>
<p>Author Juval Lowy, Microsoft software legend and participant in WCF&#8217;s original strategic design review, revised this new edition for the latest productivity-enhancing features of C# 3.0 and the .NET 3.5 SP1 Framework. The book also contains Lowy&#8217;s ServiceModelEx, a framework of useful utilities, tools, and helper classes that let you simplify and automate many tasks, and extend WCF as well. With this book, you will:</p>
<ul>
<li>Learn about WCF architecture and essential building blocks, including key concepts such as reliability and transport session</li>
<li>Use built-in features such as service hosting, instance management, concurrency management, transactions, disconnected queued calls, and security</li>
<li>Take advantage of relevant design options, tips, and best practices in Lowy&#8217;s ServiceModelEx framework to increase your productivity and the quality of your WCF services</li>
<li>Learn the rationale behind particular design decisions, and discover poorly documented and little-understood aspects of SOA development</li>
</ul>
</div>
<div id="fulldesc">By teaching you the &#8220;why&#8221; along with the &#8220;how&#8221; of WCF programming, <em>Programming WCF Services</em> not only will help you master WCF, it will enable you to become a better software engineer.</div>
<div></div>
<div>
<p><a href="http://rapidshare.com/files/18430250/OReilly.Programming.WCF.Services.Feb.2007.eBook-BBL.rar.html" target="_blank">Download </a></p>
<p><a href="http://depositfiles.com/files/654178" target="_blank">Link 2</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/programming-wcf-services.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pro ASP.NET 3.5 in VB 2008: Includes Silverlight 2</title>
		<link>http://www.52ebook.net/html/pro-aspnet-35-vb-2008-includes-silverlight-2.html</link>
		<comments>http://www.52ebook.net/html/pro-aspnet-35-vb-2008-includes-silverlight-2.html#comments</comments>
		<pubDate>Thu, 16 Jul 2009 04:21:36 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C# ASP.NET3.5]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://52ebook.net/?p=1088</guid>
		<description><![CDATA[
Pro ASP.NET 3.5 in VB 2008: Includes Silverlight 2
Product Description
ASP.NET 3.5 is the latest version of Microsoft’s revolutionary ASP.NET technology. It is the principal standard for creating dynamic web pages on the Windows platform. Pro ASP.NET 3.5 in VB 2008: Includes Silverlight 2 raises the bar for high–quality, practical advice on learning and deploying Microsoft’s [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1089" href="http://52ebook.net/16/pro-aspnet-35-vb-2008-includes-silverlight-2.html/51kqoh9gfyl_bo2204203200_pisitb-sti"><img class="aligncenter size-full wp-image-1089" title="51kqOH9gfYL_BO2204203200_PIsitb-sti" src="http://52ebook.net/wp-content/uploads/2009/07/51kqOH9gfYL_BO2204203200_PIsitb-sti.jpg" alt="51kqOH9gfYL_BO2204203200_PIsitb-sti" width="240" height="240" /></a></p>
<p>Pro ASP.NET 3.5 in VB 2008: Includes Silverlight 2</p>
<p><strong>Product Description</strong></p>
<p>ASP.NET 3.5 is the latest version of Microsoft’s revolutionary ASP.NET technology. It is the principal standard for creating dynamic web pages on the Windows platform. <em>Pro ASP.NET 3.5 in VB 2008: Includes Silverlight 2</em> raises the bar for high–quality, practical advice on learning and deploying Microsoft’s dynamic web solution.</p>
<p>Updated with everything you need to integrate Silverlight 2.0 into your ASP.NET applications, this book teaches you all about Silverlight’s exciting new features so that your ASP projects can be rich in visual flair and compelling to the user. You’ll learn how to use the new levels of abstraction in the Entity Framework to design elegant, powerful application architectures.</p>
<p>Seasoned .NET professionals <strong>Matthew MacDonald</strong>, <strong>Mario Szpuszta</strong>, and <strong>Vidya Vrat Agarwal</strong> explain how you can get the most from these groundbreaking new technologies. They cover ASP.NET 3.5 as a whole, illustrating both the brand–new features and the functionality carried over from previous versions of ASP. This book will give you the knowledge you need to code real ASP.NET 3.5 applications in the best possible style.</p>
<p>The book will teach you ASP.NET 3.5 starting with core concepts to more advanced topics. You will learn</p>
<ul>
<li><strong>Core concepts</strong> of ASP.NET 3.5. Why it’s special. What its fundamental principles are. The basics of Visual Studio. How ASP.NET 3.5 controls are created, and how they fit into ASP.NET 3.5 pages, ultimately creating full applications.</li>
<li><strong>Security</strong>. Once considered the Achilles’ heel of all Windows web applications, security has vastly improved and is a cornerstone of ASP.NET 3.5. This book explains the various forms of available security and how to best apply them.</li>
<li>Taking things further using <strong>advanced user interface techniques</strong>. This includes user controls, customer server controls, client–side JavaScript, and GDI+.</li>
<li><strong>Web services</strong>. In an increasingly connected world, working with web services grows in importance. This book will show you how to work with them.</li>
<li><strong>ASP.NET AJAX</strong>, with an emphasis on contemporary web development techniques.</li>
<li><strong>Development using Internet Information Services 7</strong>, Microsoft’s premier web hosting platform.</li>
</ul>
<p><a href="http://rapidshare.com/files/239472855/Pro_Asp.zip" target="_blank">download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/pro-aspnet-35-vb-2008-includes-silverlight-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Expert C# 2008 Business Objects</title>
		<link>http://www.52ebook.net/html/expert-2008-business-objects.html</link>
		<comments>http://www.52ebook.net/html/expert-2008-business-objects.html#comments</comments>
		<pubDate>Thu, 16 Jul 2009 04:19:27 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://52ebook.net/16/expert-2008-business-objects.html</guid>
		<description><![CDATA[
Expert C# 2008 Business Objects
Product Description
Do you want to create .NET applications that provide high performance and scalability? Do you want to employ object–oriented programming techniques in a distributed environment? Do you want to maximize the reuse and maintainability of your code? Then this book is for you.
In Rockford Lhotka’s Expert C# 2008 Business Objects, [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1085" href="http://52ebook.net/16/expert-2008-business-objects.html/51a9okulrul_sl500_aa240_"><img class="aligncenter size-full wp-image-1085" title="51a9OKulRuL_SL500_AA240_" src="http://52ebook.net/wp-content/uploads/2009/07/51a9OKulRuL_SL500_AA240_.jpg" alt="51a9OKulRuL_SL500_AA240_" width="240" height="240" /></a></p>
<p>Expert C# 2008 Business Objects</p>
<p><strong>Product Description</strong></p>
<p>Do you want to create .NET applications that provide high performance and scalability? Do you want to employ object–oriented programming techniques in a distributed environment? Do you want to maximize the reuse and maintainability of your code? Then this book is for you.</p>
<p>In <strong>Rockford Lhotka</strong>’s <em>Expert C# 2008 Business Objects</em>, you’ll learn how to use advanced .NET Framework capabilities alongside OO design and programming to create scalable, maintainable object–oriented applications. Better still, this book includes CSLA .NET 3.6, a widely used framework on which you can base your application development. By using the concepts and framework in the book, you can focus more on your business issues and less on technology.</p>
<p>Using VS 2008 and C# 3.0, <strong>Rockford Lhotka</strong> shows you how CSLA .NET 3.6 allows great flexibility in object persistence, so business objects can use virtually any data sources available. The CSLA framework supports 1–, 2– and n–tier models through the concept of mobile objects. This provides the flexibility to optimize performance, scalability, security, and fault tolerance with no changes to code in the UI or business objects.</p>
<p>Business objects based on CSLA.NET 3.6 automatically gain many advanced features that simplify the creation of Windows forms, web forms, WPF, WCF, WF, and web services interfaces, and LINQ.</p>
<h3>Who is this book for</h3>
<p>This book is for .NET developers using VS 2008 who want to create .NET applications that provide high performance and scalability, employing object–oriented programming techniques in a distributed environment.</p>
<p><strong>About the Author</strong><br />
Rockford Lhotka is the author of numerous books, including <em>Expert One-on-One Visual Basic .NET</em> and <em>Expert C# Business Objects</em>. He is a Microsoft Software Legend, Regional Director, MVP, and INETA speaker. Rockford speaks at many conferences and user groups around the world and is a columnist for MSDN Online. Rockford is the principal technology evangelist for Magenic Technologies, one of the nation’s premiere Microsoft Gold Certified Partners dedicated to solving today’s most challenging business problems using 100% Microsoft tools and technology.</p>
<p><a href="http://rapidshare.com/files/183479416/Expert_C_2008_Business_Objects.rar" target="_blank">download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/expert-2008-business-objects.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pro C# 2008 and the .NET 3.5 Platform, Fourth Edition</title>
		<link>http://www.52ebook.net/html/pro-2008-net-35-platform-fourth-edition.html</link>
		<comments>http://www.52ebook.net/html/pro-2008-net-35-platform-fourth-edition.html#comments</comments>
		<pubDate>Thu, 16 Jul 2009 04:18:01 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[C# ASP.NET3.5]]></category>

		<guid isPermaLink="false">http://52ebook.net/?p=1081</guid>
		<description><![CDATA[
Product Description
Book Description
The first edition of this book was released at the 2001 Tech Ed conference in Atlanta, Georgia. Since that time, this text has been revised, tweaked, and enhanced to account for the changes found within each release of the .NET platform (1.1, 2.0, 3.0 and now 3.5).
The last version, .NET 3.0, was more [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1082" href="http://52ebook.net/16/pro-2008-net-35-platform-fourth-edition.html/51sbpi61scl-_sl500_bo2204203200_pisitb-dp-500-arrowtopright45-64_ou01_aa240_sh20_"><img class="aligncenter size-full wp-image-1082" title="51SBpI61scL._SL500_BO2,204,203,200_PIsitb-dp-500-arrow,TopRight,45,-64_OU01_AA240_SH20_" src="http://52ebook.net/wp-content/uploads/2009/07/51SBpI61scL._SL500_BO2204203200_PIsitb-dp-500-arrowTopRight45-64_OU01_AA240_SH20_.jpg" alt="51SBpI61scL._SL500_BO2,204,203,200_PIsitb-dp-500-arrow,TopRight,45,-64_OU01_AA240_SH20_" width="240" height="240" /></a></p>
<p><strong>Product Description</strong></p>
<h3>Book Description</h3>
<p>The first edition of this book was released at the 2001 Tech Ed conference in Atlanta, Georgia. Since that time, this text has been revised, tweaked, and enhanced to account for the changes found within each release of the .NET platform (1.1, 2.0, 3.0 and now 3.5).</p>
<p>The last version, .NET 3.0, was more of an augmentative release, essentially providing three new APIs: Windows Presentation Foundation (WPF), Windows Communication Foundation (WCF) and Windows Workflow Foundation (WF). As you would expect, coverage of the “W’s” has been expanded a great deal in this version of the book from the previous <em>Special Edition</em> text.</p>
<p>Unlike .NET 3.0, .NET 3.5 provides <em>dozens</em> of new C# language features and .NET APIs. This edition of the book will walk you through all of this new material using the same readable approach as was found in previous editions. Rest assured, you’ll find detailed coverage of Language Integrated Query (LINQ), the C# 2008 language changes (automatic properties, extension methods, anonymous types, etc.) and the numerous bells and whistles of Visual Studio 2008.</p>
<h3>What you will learn</h3>
<ul>
<li><strong>Everything you need to know</strong> – get up to speed with C# 2008 quickly and efficiently.</li>
<li><strong>Discover all the new .NET 3.5 features</strong> — Language Integrated Query, anonymous types, extension methods, automatic properties, and more.</li>
<li><strong>Get a professional foothold</strong> — targeted to appeal to experienced software professionals, this book gives you the facts you need the way you need to see them.</li>
<li><strong>A rock-solid foundation</strong> – focuses on everything you need to be a successful .NET 3.5 programmer, not just the new features. Get comfortable with all the core aspects of the platform — including assemblies, remoting, Windows Forms, Web Forms, ADO.NET, XML web services, and much more.</li>
</ul>
<h3>Who is this book for?</h3>
<p>If you’re checking out this book for the first time, understand that it targets experienced software professionals and/or students of computer science (so please don’t expect three chapters devoted to “for” loops). The mission of this text is to provide you with a rock-solid foundation to the C# 2008 programming language and the core aspects of the .NET platform (OOP, assemblies, file IO, Windows Forms/WPF, ASP.NET, ADO.NET, WCF,WF, etc.). Once you digest the information presented in these 33 chapters, you’ll be in a perfect position to apply this knowledge to your specific programming assignments, and you’ll be well equipped to explore the .NET universe on your own terms.</p>
<p><a href="http://rapidshare.com/files/254938009/Pro_C__2008_and_the_NET_3.5_Platform_Fourth_Edition.pdfl" target="_blank">Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/pro-2008-net-35-platform-fourth-edition.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pro VB 2008 and the .NET 3.5 Platform, Third Edition</title>
		<link>http://www.52ebook.net/html/pro-vb-2008-net-35-platform-edition.html</link>
		<comments>http://www.52ebook.net/html/pro-vb-2008-net-35-platform-edition.html#comments</comments>
		<pubDate>Thu, 16 Jul 2009 04:16:12 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C# ASP.NET3.5]]></category>
		<category><![CDATA[VB]]></category>

		<guid isPermaLink="false">http://52ebook.net/?p=1077</guid>
		<description><![CDATA[
Product Description
Whether you’re moving to .NET for the first time, or you’re already writing applications on .NET 2.0 or .NET 3.0, Pro VB 2008 and the .NET 3.5 Platform, Third Edition will provide you with a solid grounding in this new technology and serve as a comprehensive reference throughout your coding career:
 

Explore five new [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1078" href="http://52ebook.net/16/pro-vb-2008-net-35-platform-edition.html/51gag93axtl_sl500_aa240_"><img class="aligncenter size-full wp-image-1078" title="51gag93axtl_sl500_aa240_" src="http://52ebook.net/wp-content/uploads/2009/07/51gag93axtl_sl500_aa240_.jpg" alt="51gag93axtl_sl500_aa240_" width="240" height="240" /></a></p>
<p><strong>Product Description</strong><br />
Whether you’re moving to .NET for the first time, or you’re already writing applications on .NET 2.0 or .NET 3.0, <em>Pro VB 2008 and the .NET 3.5 Platform, Third Edition</em> will provide you with a solid grounding in this new technology and serve as a comprehensive reference throughout your coding career:</p>
<p><span id="more-1971"> </span></p>
<ul>
<li><strong>Explore five new chapters of content</strong>—including the grammar of the common intermediate language (CIL), .NET generics, and object serialization services.</li>
<li><strong>Discover all the new .NET 3.5 features</strong>—nullable types, delegate covariance, ASP.NET 2.0 master pages, the new Windows Forms “Strip” controls, and much more.</li>
<li><strong>Get a professional foothold</strong>—targeted to appeal to experienced software professionals and/or graduate students of computer science (so don’t expect three chapters on iteration or decision constructs!).</li>
<li><strong>Gain a rock–solid foundation in programming using Visual Basic.</strong></li>
<li><strong>Get comfortable with all the core aspects of the .NET platform</strong>—including assemblies, remoting, Windows Forms, Web Forms, ADO.NET, XML web services, and much more.</li>
</ul>
<p>Once you’ve digested the information contained in the 25 chapters of this 1000+ page book, you’ll be ready to apply this knowledge to your specific programming assignments and well equipped to explore the .NET universe on your own.</p>
<h3>What you’ll learn</h3>
<ul>
<li>Everything you need to put .NET 3.5 and Visual Basic 2008 to use in your professional workbefore anyone else!</li>
<li>Insights and techniques from the author’s experience since .NET 1.0</li>
<li>Complete coverage of .NET 3.5—WPF, WCF and WF</li>
</ul>
<h3>Who is this book for?</h3>
<p>Anyone with some software development experience interested in the new .NET 3.5 Platform and the Visual Basic language. Whether you’re moving to .NET for the first time or you’re already writing applications on .NET 2.0 or .NET 3.0, this book will provide you with a solid grounding in this new technology and serve as a comprehensive reference throughout your coding career.</p>
<p><a href="http://rapidshare.com/files/102678316/1590598229.zip" target="_blank">Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/pro-vb-2008-net-35-platform-edition.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pro ADO.NET Data Services: Working with RESTful Data</title>
		<link>http://www.52ebook.net/html/pro-adonet-data-services-working-restful-data.html</link>
		<comments>http://www.52ebook.net/html/pro-adonet-data-services-working-restful-data.html#comments</comments>
		<pubDate>Thu, 16 Jul 2009 04:13:15 +0000</pubDate>
		<dc:creator>52ebook</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ADO]]></category>

		<guid isPermaLink="false">http://52ebook.net/?p=1073</guid>
		<description><![CDATA[
Pro ADO.NET Data Services: Working with RESTful Data
Product Description
Pro ADO.NET Data Services: Working with RESTful Data is aimed at developers interested in taking advantage of the new REST–style data services that ADO.NET Data Services (formerly code–named Astoria) provides. The book shows how to incorporate ADO.NET Data Services into a wide range of common environments including [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1074" href="http://52ebook.net/16/pro-adonet-data-services-working-restful-data.html/51hgs6sbbfl_sl500_aa240_"><img class="aligncenter size-full wp-image-1074" title="51Hgs6sBBFL_SL500_AA240_" src="http://52ebook.net/wp-content/uploads/2009/07/51Hgs6sBBFL_SL500_AA240_.jpg" alt="51Hgs6sBBFL_SL500_AA240_" width="240" height="240" /></a></p>
<p>Pro ADO.NET Data Services: Working with RESTful Data</p>
<p><strong>Product Description</strong></p>
<p><em>Pro ADO.NET Data Services: Working with RESTful Data</em> is aimed at developers interested in taking advantage of the new REST–style data services that ADO.NET Data Services (formerly code–named Astoria) provides. The book shows how to incorporate ADO.NET Data Services into a wide range of common environments including BizTalk, AJAX and Silverlight client applications. The material is intended for professional developers who are comfortable with the .NET 3.5 Framework but are coming to ADO.NET Data Services for the first time and want to understand how to integrate it into their own applications and enterprise solutions. The book is packed full with extensive real–world solutions and exercises, ensuring you walk away with a deep understanding of how to use ADO.NET Data Services to your best advantage.</p>
<p><a href="http://rapidshare.com/files/192304138/Pro_ADO_NET.rar" target="_blank">download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.52ebook.net/html/pro-adonet-data-services-working-restful-data.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
