I have created some templates for supporting ADO.NET Data Services, here are the contents of the readme in the attachment. Good luck!
Brian Chance
Purpose
Add support for ADO.NET Data Services to LinqMetaData
Features:
--Adds IgnoreProperties attribute for each entity for ADO.NET un-supported types (Validator, AuthorizerToUse, etc.) and extraneous LLBLGen Properties (i.e. LLBLGenProEntityName, IsDeserializing, etc.)
--Adds DataServiceKey attribute for each entity to indicate primary keys
--Implements IUpdatable on LinqMetaData to allow inserts and updates
--Implements IExpandProvider on LinqMetaData to support the expand keyword (prefetch)
Installation
NOTICE!!!: I have updated the default LinqMetaData templates to make the LinqMetaData class partial
Unpack archive to the LLBLGen Pro installation folder. You will be asked to overwrite Tasks and Templates.
Usage
The presets in the archive are meant to add one file LinqMetaData.adods.cs to an EXISTING c# project.
To generate every time, merge the preset with the default SelfServicing or Adapter you are using.
Targets C# and .NET 3.5 only
Open your LLBLGen project, F7 to gen
Template group - SelfServicing or Adapter
task queue to execute tab - Selected preset - AdditionalTemplates.SelfServicing/Adapter.LinqADODS
Start Generator
This will add a new file to the Linq folder LinqMetaData.adods.cs
Open your project and add references to System.Data.Services and System.Data.Services.Client
In a web site, add a new item "ADO.NET Data Service", Add necessary references to use the LinqMetaData class
The service should look something like this:
using System;
using System.Collections.Generic;
using System.Data.Services;
using System.Linq;
using System.ServiceModel.Web;
using System.Web;
using System.Linq.Expressions;
using LLBLEntities2.Linq;
using LLBLEntities2.EntityClasses;
using LLBLEntities2.DatabaseSpecific;
using SD.LLBLGen.Pro.ORMSupportClasses;
namespace WebService1
{
[System.ServiceModel.ServiceBehavior(IncludeExceptionDetailInFaults = true)]
public class DataService1 : DataService<LinqMetaData>
{
public static void InitializeService(IDataServiceConfiguration config)
{
config.SetEntitySetAccessRule("*", EntitySetRights.All);
config.UseVerboseErrors = true;
EntityBase2.MarkSavedEntitiesAsFetched = true;
}
protected override LinqMetaData CreateDataSource()
{
return new LinqMetaData(new DataAccessAdapter());
}
}
}
ADAPTER NOTES:
--You need to override the CreateDataSource() to create the DataAccessAdapter
--Set EntityBase2.MarkSavedEntitiesAsFetched = true because ADO.NET DS reads the object right after saving to serialize back
SELFSERVICING NOTES:
--You only need to override CreateDataSource if you want to initialize a transaction
Implementation Notes
Expand keyword can specify multiple levels of prefetch - so
var x = from o in LinqMetaData.OrderEntity.Expand("Products/Category,Products/Category/SubCategories") select o
would retrieve Products, Products.Category and Products.Category.SubCategories using WithPath
I ended up generating infrastructure code to handle the expansions to get the runtime typing correct.
ADO.NET attaches any QueryInterceptors on the DataService to the expand segments passed to the IExpandProvider.ApplyExtensions method.
These are added as filters on the PathEdge. Make sure the QueryInterceptor entitySetName and T in the Func<T, bool> are the same type.
When objects are inserted, ADO.NET DS automatically re-reads the object from the database using the key and the IQueryable interface
When objects are updated, ADO.NET DS automatically reads the object from the database then sets the values from the client.