<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://code.msdn.microsoft.com/rss.xsl"?><rss version="2.0"><channel><title>SSDS REST Library</title><link>http://code.msdn.microsoft.com/ssdsrest/Project/ProjectRss.aspx</link><description>This library contains a simple model for working with data using the REST api against SQL Server Data Services &amp;#40;SSDS&amp;#41;.  It allows CRUD operations as well as provides support for a strongly typed qu...</description><item><title>NEW POST: Adding metadata to the blob</title><link>http://code.msdn.microsoft.com/ssdsrest/Thread/View.aspx?ThreadId=1562</link><description>&lt;div class="wikidoc"&gt;
Hi,&lt;br /&gt; &lt;br /&gt;First of all thanks for the wonderful work.  Your library has made it very easy for our team.  I do have a question however.  Now, in your examples related to adding a blob to Azure storage, you are adding things like id, content disposition etc.  I want to add some metadata to the blob.  Like for e.g. in the microsoft examples, I could do the following - &lt;br /&gt;      &lt;br /&gt;     BlobProperties properties = new BlobProperties(string.Format(CultureInfo.InvariantCulture, &amp;quot;image_{0}&amp;quot;, id));&lt;br /&gt;     NameValueCollection metadata = new NameValueCollection();&lt;br /&gt;     properties.Metadata = metadata;&lt;br /&gt; &lt;br /&gt;With your library, I can have a SsdsBlob entity and assign properties.  But, how to assign metadata like username or date entered or expiry date etc.  &lt;br /&gt;
&lt;/div&gt;</description><author>jainswati</author><pubDate>Tue, 14 Apr 2009 14:13:37 GMT</pubDate><guid isPermaLink="false">NEW POST: Adding metadata to the blob 20090414P</guid></item><item><title>NEW POST: Querying on Strings - not supported?</title><link>http://code.msdn.microsoft.com/ssdsrest/Thread/View.aspx?ThreadId=1220</link><description>&lt;div class="wikidoc"&gt;
Jamie,&lt;br /&gt;Thanks for your reply.  My bad, I am using the SSDS client in my VB.net program.  When I use the following, it throws a not supported error&lt;br /&gt; &lt;br /&gt;Dim results = container.Query(Of SampleEntity)(Function(X As SsdsEntity(Of SampleEntity)) X.Entity.StringField = &amp;quot;1234&amp;quot;)&lt;br /&gt; &lt;br /&gt;Any help would be greatly appreciated&lt;br /&gt;
&lt;/div&gt;</description><author>RajeshKris</author><pubDate>Wed, 11 Mar 2009 16:46:48 GMT</pubDate><guid isPermaLink="false">NEW POST: Querying on Strings - not supported? 20090311P</guid></item><item><title>NEW POST: Bug: CreateAuthority() doesn't return the URI of the created authority</title><link>http://code.msdn.microsoft.com/ssdsrest/Thread/View.aspx?ThreadId=1270</link><description>&lt;div class="wikidoc"&gt;
Hi,&lt;br /&gt;Just reporting a small bug.&lt;br /&gt;CreateAuthority() doesn't return the URI of the created authority as it says it should:&lt;br /&gt; &lt;br /&gt;        /// &amp;lt;summary&amp;gt;&lt;br /&gt;        /// Creates an authority with given name.&lt;br /&gt;        /// &amp;lt;/summary&amp;gt;&lt;br /&gt;        /// &amp;lt;param name=&amp;quot;name&amp;quot;&amp;gt;The authority name.&amp;lt;/param&amp;gt;&lt;br /&gt;        /// &amp;lt;returns&amp;gt;The URI of the created authority.&amp;lt;/returns&amp;gt;&lt;br /&gt;        public string CreateAuthority(string name)&lt;br /&gt;        {&lt;br /&gt;            SsdsRestFacade facade = this.CreateFacade(true);&lt;br /&gt;            var authority = new XElement(Constants.ns + &amp;quot;Authority&amp;quot;,&lt;br /&gt;                new XElement(Constants.ns + &amp;quot;Id&amp;quot;, name)&lt;br /&gt;                );&lt;br /&gt; &lt;br /&gt;            return facade.Insert(authority.ToString());&lt;br /&gt;        }&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;Regards&lt;br /&gt;Jamie&lt;br /&gt;
&lt;/div&gt;</description><author>jamiet</author><pubDate>Tue, 03 Feb 2009 21:53:57 GMT</pubDate><guid isPermaLink="false">NEW POST: Bug: CreateAuthority() doesn't return the URI of the created authority 20090203P</guid></item><item><title>NEW POST: No AuthorityExists() method??</title><link>http://code.msdn.microsoft.com/ssdsrest/Thread/View.aspx?ThreadId=1262</link><description>&lt;div class="wikidoc"&gt;
I am using the following code along with the SSDS REST Librayr:&lt;br /&gt;            if (!ctx.ContainerExists(&amp;quot;containerName&amp;quot;)){&lt;br /&gt;                ctx.CreateContainer(&amp;quot;containerName&amp;quot;);&lt;br /&gt;            }&lt;br /&gt; &lt;br /&gt;However, I'm not able to do this:&lt;br /&gt;            if (!ctx.AuthorityExists(&amp;quot;authorityName&amp;quot;)){&lt;br /&gt;                ctx.CreateAuthority(&amp;quot;authorityName&amp;quot;);&lt;br /&gt;            }&lt;br /&gt;because there is no AuthorityExists() method.&lt;br /&gt; &lt;br /&gt;I imagine this is because when you, Ryan, first produced the library it was not possible to query for a list of authorities. However, it is now, so can I request that you add this method? I realise its pretty easy to do ourselves but it would be handy to see it added to the source here so that everyone can take advantage of it.&lt;br /&gt; &lt;br /&gt;Thanks&lt;br /&gt;Jamie&lt;br /&gt;
&lt;/div&gt;</description><author>jamiet</author><pubDate>Mon, 02 Feb 2009 17:01:57 GMT</pubDate><guid isPermaLink="false">NEW POST: No AuthorityExists() method?? 20090202P</guid></item><item><title>NEW POST: Querying on Strings - not supported?</title><link>http://code.msdn.microsoft.com/ssdsrest/Thread/View.aspx?ThreadId=1220</link><description>&lt;div class="wikidoc"&gt;
Rajesh,&lt;br /&gt;Try this:&lt;br /&gt;var results = container.Query&amp;lt;Foo&amp;gt;(e =&amp;gt; e.Entity.Name ==&amp;quot;My Foo&amp;quot;);&lt;br /&gt; &lt;br /&gt;Common mistake for a VB person - believe me, I've made the same mistake plenty of times.&lt;br /&gt; &lt;br /&gt;-Jamie&lt;br /&gt;
&lt;/div&gt;</description><author>jamiet</author><pubDate>Mon, 02 Feb 2009 16:57:36 GMT</pubDate><guid isPermaLink="false">NEW POST: Querying on Strings - not supported? 20090202P</guid></item><item><title>NEW POST: Querying on Strings - not supported?</title><link>http://code.msdn.microsoft.com/ssdsrest/Thread/View.aspx?ThreadId=1220</link><description>&lt;div class="wikidoc"&gt;
I'd like to first appreciate you for such a great framework.  You just made my day.&lt;br /&gt; &lt;br /&gt;From you sample code, the following works&lt;br /&gt;var results = container.Query&amp;lt;Foo&amp;gt;(e =&amp;gt; e.Entity.Size &amp;gt; 2);&lt;br /&gt; &lt;br /&gt;However the following is not supported&lt;br /&gt;var results = container.Query&amp;lt;Foo&amp;gt;(e =&amp;gt; e.Entity.Name =&amp;quot;My Foo&amp;quot;);&lt;br /&gt; &lt;br /&gt;Since I am new to Linq Expression tree &lt;a href="http://code.msdn.microsoft.com/ssdsrest/Wiki/View.aspx?title=plus%20a%20VB.NET%20guy"&gt;plus a VB.NET guy&lt;/a&gt;, I am unable to alter your code to make this work.  Any suggesstions/ideas would be appreciated.&lt;br /&gt; &lt;br /&gt;I could query all the entities and do a client side filteration, but that is not a scalable option.&lt;br /&gt; &lt;br /&gt;-Thanks again.&lt;br /&gt;
&lt;/div&gt;</description><author>RajeshKris</author><pubDate>Sat, 24 Jan 2009 14:24:13 GMT</pubDate><guid isPermaLink="false">NEW POST: Querying on Strings - not supported? 20090124P</guid></item><item><title>NEW POST: Nice!</title><link>http://code.msdn.microsoft.com/ssdsrest/Thread/View.aspx?ThreadId=948</link><description>&lt;div class="wikidoc"&gt;
Fantastic work! Eagerly awaiting the version w/ join, orderby and take. Kinda hard to get started without them.&lt;br /&gt;
&lt;/div&gt;</description><author>mattiasj</author><pubDate>Fri, 14 Nov 2008 20:00:17 GMT</pubDate><guid isPermaLink="false">NEW POST: Nice! 20081114P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://code.msdn.microsoft.com/ssdsrest/Wiki/View.aspx?title=Home&amp;version=5</link><description>&lt;div class="wikidoc"&gt;
&lt;h2&gt;
Description
&lt;/h2&gt;This library uses the REST API against SQL Data Services and performs CRUD  &amp;amp; Query operations.  It features a powerful LINQ-based query and serialization model to make working with objects and SDS very simple.&lt;br /&gt; &lt;br /&gt;&lt;h2&gt;
Change Log:
&lt;/h2&gt; &lt;br /&gt;&lt;b&gt;20081011 Refresh Release&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Updated the serialization mechanism to run in partial trust.  This allows it to run inside Windows Azure projects.&lt;/li&gt;&lt;li&gt;Minor refactoring&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;20080904 Release&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;added support for blobs, concurrency, and parallelism&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;initial release&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;LINQ query syntax and strongly typed object support.&lt;/li&gt;&lt;li&gt;Simple predicates are translated to SQL Data Services Syntax automatically&lt;/li&gt;&lt;li&gt;Support for flexible properties in addition to strongly typed properties&lt;/li&gt;&lt;li&gt;Paging support&lt;/li&gt;&lt;li&gt;Support for multiple return types from query&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
Future Features
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;Add support for JOIN syntax, Take syntax, OrderBy syntax&lt;/li&gt;&lt;li&gt;Implement fully IQueryable model for the remaining features&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h2&gt;
Sample Syntax
&lt;/h2&gt; &lt;br /&gt;&lt;pre&gt;
var container = Context.OpenContainer(&amp;quot;querytests&amp;quot;);
var foo = new Foo { IsPublic = false, Name = &amp;quot;MyFoo&amp;quot;, Size = 12 };
 
//insert it with unique id guid string
container.Insert(foo, Guid.NewGuid().ToString());
 
//notice the LINQ syntax on strong type &amp;quot;Foo&amp;quot;
var results = container.Query&amp;lt;Foo&amp;gt;(e =&amp;gt; e.Entity.Size &amp;gt; 2);
&lt;/pre&gt; &lt;br /&gt;This release also supports blobs via the SsdsBlobEntity both synchronously as well as async&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
MemoryStream mem = new MemoryStream();
//load memory stream
//...
//now upload it to service
using (SsdsBlobEntity blob = new SsdsBlobEntity(mem))
{
    blob.ContentDisposition = &amp;quot;violin.jpg&amp;quot;;
    blob.MimeType = @&amp;quot;image/jpeg&amp;quot;;
    blob.Id = Guid.NewGuid().ToString();
    var container = Context.OpenContainer(&amp;quot;blobtests&amp;quot;);
    container.Insert(blob);
}
&lt;/pre&gt; &lt;br /&gt;Concurrency using If-Match and If-None-Match headers is supported as well.&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
var table = Context.OpenContainer(&amp;quot;foo&amp;quot;);
 
//create new foo
var foo = new Foo { IsPublic = false, Name = &amp;quot;Foo&amp;quot;, Size = 10 };
string id = Guid.NewGuid().ToString();
table.Insert(foo, id);
 
//update entity if none match (different version)
SsdsEntity&amp;lt;Foo&amp;gt; entity = new SsdsEntity&amp;lt;Foo&amp;gt;();
entity.Entity = foo;
entity.Id = id;            
entity.Entity.Name = &amp;quot;Foo2&amp;quot;;
 
table.Update(entity, ConcurrencyPattern.IfNoneMatch);
&lt;/pre&gt; &lt;br /&gt;This release also supports parallelism to the SSDS service using the Parallel Extensions.  This support is extensible to other techniques using extension methods.&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
var container = Context.OpenContainer(&amp;quot;paging&amp;quot;);
 
List&amp;lt;SsdsEntity&amp;lt;Foo&amp;gt;&amp;gt; entities = new List&amp;lt;SsdsEntity&amp;lt;Foo&amp;gt;&amp;gt;();
 
for (int i = 0; i &amp;lt; 10; i++)
{
    var foo = new Foo
    {
        IsPublic = false,
        Name = &amp;quot;Foo&amp;quot; + i,
        Size = i
    };
 
    entities.Add(new SsdsEntity&amp;lt;Foo&amp;gt;() { Entity = foo, Id = foo.Name });
}
 
Exception ex = null;
 
container.Insert&amp;lt;Foo&amp;gt;(entities, (ent, excep) =&amp;gt;
{
    ex = excep;
    return false;
});
 
if (ex != null)
{
    throw ex;
}
&lt;/pre&gt; &lt;br /&gt;More information about this provider can be found in the related blog postings:&lt;br /&gt; &lt;br /&gt;&lt;a href="http://dunnry.com/blog/SerializationInSSDS.aspx" class="externalLink"&gt;Serialization in SSDS&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://dunnry.com/blog/WorkingWithObjectsInSSDSPart1.aspx" class="externalLink"&gt;Working with Objects in SSDS Part 1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://dunnry.com/blog/WorkingWithObjectsInSSDSPart2.aspx" class="externalLink"&gt;Working with Objects in SSDS Part 2&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://dunnry.com/blog/WorkingWithObjectsInSSDSPart3.aspx" class="externalLink"&gt;Working with Objects in SSDS Part 3&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>dunnry</author><pubDate>Wed, 12 Nov 2008 05:35:19 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20081112A</guid></item><item><title>RELEASED: SSDS REST Library 9-4 Release (Sep 04, 2008)</title><link>http://code.msdn.microsoft.com/ssdsrest/Release/ProjectReleases.aspx?ReleaseId=1250</link><description></description><author></author><pubDate>Thu, 04 Sep 2008 23:21:28 GMT</pubDate><guid isPermaLink="false">RELEASED: SSDS REST Library 9-4 Release (Sep 04, 2008) 20080904P</guid></item><item><title>UPDATED RELEASE: SSDS REST Library 9-4 Release (Sep 04, 2008)</title><link>http://code.msdn.microsoft.com/ssdsrest/Release/ProjectReleases.aspx?ReleaseId=1250</link><description></description><author></author><pubDate>Thu, 04 Sep 2008 23:21:28 GMT</pubDate><guid isPermaLink="false">UPDATED RELEASE: SSDS REST Library 9-4 Release (Sep 04, 2008) 20080904P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://code.msdn.microsoft.com/ssdsrest/Wiki/View.aspx?title=Home&amp;version=4</link><description>&lt;div class="wikidoc"&gt;
This library uses the REST api against SQL Server Data Services and performs CRUD  &amp;amp; Query operations.  It features a powerful LINQ-based query and serialization model to make working with objects and SSDS very simple.&lt;br /&gt; &lt;br /&gt;This updated release on 9/4 features new support for blobs, concurrency, and parallelism in addition the already powerful LINQ query support over strongly typed objects.&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
var container = Context.OpenContainer(&amp;quot;querytests&amp;quot;);
var foo = new Foo { IsPublic = false, Name = &amp;quot;MyFoo&amp;quot;, Size = 12 };
 
//insert it with unique id guid string
container.Insert(foo, Guid.NewGuid().ToString());
 
//notice the LINQ syntax on strong type &amp;quot;Foo&amp;quot;
var results = container.Query&amp;lt;Foo&amp;gt;(e =&amp;gt; e.Entity.Size &amp;gt; 2);
&lt;/pre&gt; &lt;br /&gt;This release also supports blobs via the SsdsBlobEntity both synchronously as well as async&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
MemoryStream mem = new MemoryStream();
//load memory stream
//...
//now upload it to service
using (SsdsBlobEntity blob = new SsdsBlobEntity(mem))
{
    blob.ContentDisposition = &amp;quot;violin.jpg&amp;quot;;
    blob.MimeType = @&amp;quot;image/jpeg&amp;quot;;
    blob.Id = Guid.NewGuid().ToString();
    var container = Context.OpenContainer(&amp;quot;blobtests&amp;quot;);
    container.Insert(blob);
}
&lt;/pre&gt; &lt;br /&gt;Concurrency using If-Match and If-None-Match headers is supported as well.&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
var table = Context.OpenContainer(&amp;quot;foo&amp;quot;);
 
//create new foo
var foo = new Foo { IsPublic = false, Name = &amp;quot;Foo&amp;quot;, Size = 10 };
string id = Guid.NewGuid().ToString();
table.Insert(foo, id);
 
//update entity if none match (different version)
SsdsEntity&amp;lt;Foo&amp;gt; entity = new SsdsEntity&amp;lt;Foo&amp;gt;();
entity.Entity = foo;
entity.Id = id;            
entity.Entity.Name = &amp;quot;Foo2&amp;quot;;
 
table.Update(entity, ConcurrencyPattern.IfNoneMatch);
&lt;/pre&gt; &lt;br /&gt;This release also supports parallelism to the SSDS service using the Parallel Extensions.  This support is extensible to other techniques using extension methods.&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
var container = Context.OpenContainer(&amp;quot;paging&amp;quot;);
 
List&amp;lt;SsdsEntity&amp;lt;Foo&amp;gt;&amp;gt; entities = new List&amp;lt;SsdsEntity&amp;lt;Foo&amp;gt;&amp;gt;();
 
for (int i = 0; i &amp;lt; 10; i++)
{
    var foo = new Foo
    {
        IsPublic = false,
        Name = &amp;quot;Foo&amp;quot; + i,
        Size = i
    };
 
    entities.Add(new SsdsEntity&amp;lt;Foo&amp;gt;() { Entity = foo, Id = foo.Name });
}
 
Exception ex = null;
 
container.Insert&amp;lt;Foo&amp;gt;(entities, (ent, excep) =&amp;gt;
{
    ex = excep;
    return false;
});
 
if (ex != null)
{
    throw ex;
}
&lt;/pre&gt; &lt;br /&gt;More information about this provider can be found in the related blog postings:&lt;br /&gt; &lt;br /&gt;&lt;a href="http://dunnry.com/blog/SerializationInSSDS.aspx" class="externalLink"&gt;Serialization in SSDS&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://dunnry.com/blog/WorkingWithObjectsInSSDSPart1.aspx" class="externalLink"&gt;Working with Objects in SSDS Part 1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://dunnry.com/blog/WorkingWithObjectsInSSDSPart2.aspx" class="externalLink"&gt;Working with Objects in SSDS Part 2&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://dunnry.com/blog/WorkingWithObjectsInSSDSPart3.aspx" class="externalLink"&gt;Working with Objects in SSDS Part 3&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>dunnry</author><pubDate>Thu, 04 Sep 2008 23:20:38 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080904P</guid></item><item><title>UPDATED RELEASE: SSDS REST Library 9-4 Release (Jul 02, 2008)</title><link>http://code.msdn.microsoft.com/ssdsrest/Release/ProjectReleases.aspx?ReleaseId=1250</link><description></description><author></author><pubDate>Thu, 04 Sep 2008 23:01:13 GMT</pubDate><guid isPermaLink="false">UPDATED RELEASE: SSDS REST Library 9-4 Release (Jul 02, 2008) 20080904P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://code.msdn.microsoft.com/ssdsrest/Wiki/View.aspx?title=Home&amp;version=3</link><description>&lt;div class="wikidoc"&gt;
This library uses the REST api against SQL Server Data Services and performs CRUD operations.  It features a powerful LINQ-based query and serialization model to make working with objects and SSDS very simple.  More information about this provider can be found in the related blog postings:&lt;br /&gt; &lt;br /&gt;&lt;a href="http://dunnry.com/blog/SerializationInSSDS.aspx" class="externalLink"&gt;Serialization in SSDS&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://dunnry.com/blog/WorkingWithObjectsInSSDSPart1.aspx" class="externalLink"&gt;Working with Objects in SSDS Part 1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://dunnry.com/blog/WorkingWithObjectsInSSDSPart2.aspx" class="externalLink"&gt;Working with Objects in SSDS Part 2&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://dunnry.com/blog/WorkingWithObjectsInSSDSPart3.aspx" class="externalLink"&gt;Working with Objects in SSDS Part 3&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>dunnry</author><pubDate>Thu, 03 Jul 2008 02:49:03 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080703A</guid></item><item><title>CREATED RELEASE: SSDS REST Library (Jul 02, 2008)</title><link>http://code.msdn.microsoft.com/ssdsrest/Release/ProjectReleases.aspx?ReleaseId=1250</link><description></description><author></author><pubDate>Thu, 03 Jul 2008 02:46:43 GMT</pubDate><guid isPermaLink="false">CREATED RELEASE: SSDS REST Library (Jul 02, 2008) 20080703A</guid></item><item><title>CREATED RELEASE: SSDS REST Library (Jul 02, 2008)</title><link>http://code.msdn.microsoft.com/ssdsrest/Release/ProjectReleases.aspx?ReleaseId=1249</link><description></description><author></author><pubDate>Thu, 03 Jul 2008 02:42:06 GMT</pubDate><guid isPermaLink="false">CREATED RELEASE: SSDS REST Library (Jul 02, 2008) 20080703A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://code.msdn.microsoft.com/ssdsrest/Wiki/View.aspx?title=Home&amp;version=2</link><description>&lt;div class="wikidoc"&gt;
This library uses the REST api against SQL Server Data Services and performs CRUD operations.  It features a powerful query and serialization model to make working with objects and SSDS very simple.  More information about this provider can be found in the related blog postings:&lt;br /&gt; &lt;br /&gt;&lt;a href="http://dunnry.com/blog/SerializationInSSDS.aspx" class="externalLink"&gt;Serialization in SSDS&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://dunnry.com/blog/WorkingWithObjectsInSSDSPart1.aspx" class="externalLink"&gt;Working with Objects in SSDS Part 1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://dunnry.com/blog/WorkingWithObjectsInSSDSPart2.aspx" class="externalLink"&gt;Working with Objects in SSDS Part 2&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://dunnry.com/blog/WorkingWithObjectsInSSDSPart3.aspx" class="externalLink"&gt;Working with Objects in SSDS Part 3&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>dunnry</author><pubDate>Thu, 03 Jul 2008 02:35:33 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080703A</guid></item></channel></rss>