FrameworkTemplate/SolutionTemplate/Models/XrmContext.cs
#pragma warning disable CS1591
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //------------------------------------------------------------------------------ [assembly: Microsoft.Xrm.Sdk.Client.ProxyTypesAssemblyAttribute()] namespace ModelBuilder { /// <summary> /// Represents a source of entities bound to a Dataverse service. It tracks and manages changes made to the retrieved entities. /// </summary> public partial class XrmContext : Microsoft.Xrm.Sdk.Client.OrganizationServiceContext { /// <summary> /// Constructor. /// </summary> public XrmContext(Microsoft.Xrm.Sdk.IOrganizationService service) : base(service) { } /// <summary> /// Gets a binding to the set of all <see cref="ModelBuilder.BusinessUnit"/> entities. /// </summary> public System.Linq.IQueryable<ModelBuilder.BusinessUnit> BusinessUnitSet { get { return this.CreateQuery<ModelBuilder.BusinessUnit>(); } } /// <summary> /// Gets a binding to the set of all <see cref="ModelBuilder.EnvironmentVariableDefinition"/> entities. /// </summary> public System.Linq.IQueryable<ModelBuilder.EnvironmentVariableDefinition> EnvironmentVariableDefinitionSet { get { return this.CreateQuery<ModelBuilder.EnvironmentVariableDefinition>(); } } /// <summary> /// Gets a binding to the set of all <see cref="ModelBuilder.EnvironmentVariableValue"/> entities. /// </summary> public System.Linq.IQueryable<ModelBuilder.EnvironmentVariableValue> EnvironmentVariableValueSet { get { return this.CreateQuery<ModelBuilder.EnvironmentVariableValue>(); } } /// <summary> /// Gets a binding to the set of all <see cref="ModelBuilder.SystemUser"/> entities. /// </summary> public System.Linq.IQueryable<ModelBuilder.SystemUser> SystemUserSet { get { return this.CreateQuery<ModelBuilder.SystemUser>(); } } /// <summary> /// Gets a binding to the set of all <see cref="ModelBuilder.Team"/> entities. /// </summary> public System.Linq.IQueryable<ModelBuilder.Team> TeamSet { get { return this.CreateQuery<ModelBuilder.Team>(); } } } } #pragma warning restore CS1591 |