Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Last active December 15, 2015 14:39
Show Gist options
  • Save wullemsb/5276021 to your computer and use it in GitHub Desktop.
Save wullemsb/5276021 to your computer and use it in GitHub Desktop.
DataServiceContext generated code
namespace ODataSample
{
/// <summary>
/// There are no comments for Entities in the schema.
/// </summary>
public partial class Entities : global::System.Data.Services.Client.DataServiceContext
{
/// <summary>
/// Initialize a new Entities object.
/// </summary>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Services.Design", "1.0.0")]
public Entities(global::System.Uri serviceRoot) :
base(serviceRoot)
{
this.ResolveName = new global::System.Func<global::System.Type, string>(this.ResolveNameFromType);
this.ResolveType = new global::System.Func<string, global::System.Type>(this.ResolveTypeFromName);
this.OnContextCreated();
}
partial void OnContextCreated();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment