async void GetRootFolder (LoginOptions options)
        {
            tableView.Source = null;
            tableView.ReloadData ();

            try {
                var profile = await Services.Dropbox.GetProfileAsync (options: options);
                new UIAlertView ("Profile", profile.ToString (), null, "OK").Show ();
            } catch (UriFormatException) {
                new UIAlertView ("Specify your API keys", "Open Services.cs and specify your API keys for each provider.", null, "OK").Show ();
                return;
            } catch {
                Console.WriteLine ("Failed to retrieve Dropbox profile. (Maybe we're logged out?)");
                return;
            }

            DropboxManager.Metadata metadata;
            try {
                metadata = await Services.Dropbox.GetMetadataAsync ("/", includeContent: true, hash: null, options: options);
            } catch {
                Console.WriteLine ("Failed to retrieve Dropbox metadata");
                return;
            }

            if (tableView.Source == null) {
                var source = new MetadataSource (metadata.Contents) {
                    Controller = new WeakReference (this)
                };
                tableView.Source = source;
            } else {
                ((MetadataSource)tableView.Source).Add (metadata.Contents);
            }

            tableView.ReloadData ();
        }
 public MySqlDbContext(
     string connection,
     BackendConfiguration backendConfiguration,
     MetadataSource metadataSource)
     : base(connection, backendConfiguration, metadataSource)
 {
 }
 public WorkflowDurableInstancingDataContext(string connectionString, BackendConfiguration backend, MetadataSource metadataSource)
     : base(connectionString, backend, metadataSource)
 {
     var schemaHandler = GetSchemaHandler();
     string script = null;
     if (schemaHandler.DatabaseExists())
     {
         script = schemaHandler.CreateUpdateDDLScript(null);
     }
     else
     {
         schemaHandler.CreateDatabase();
         script = schemaHandler.CreateDDLScript();
     }
     if (!String.IsNullOrEmpty(script))
     {
         schemaHandler.ExecuteDDLScript(script);
     }
 }
예제 #4
0
 public ModeloDeDominio(string connection, MetadataSource metadataSource)
     : base(connection, backend, metadataSource)
 {
 }
예제 #5
0
        //public FluentModel()
        //    : this(connectionStringName, backend, metadataSource)
        //{ }

        public FluentModel(string connectionString, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
            : base(connectionString, backendConfiguration, metadataSource)
        {
        }
		public OpenAccessMySqlSupermarketEntityModel(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
			:base(connection, backendConfiguration, metadataSource)
		{ }
예제 #7
0
 public PerformanceTest(string connection, MetadataSource metadataSource)
     : base(connection, backend, metadataSource)
 {
 }
		public FluentModel(string connection, MetadataSource metadataSource)
			:base(connection, backend, metadataSource)
		{ }
예제 #9
0
		public ProductsDBModel(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
			:base(connection, backendConfiguration, metadataSource)
		{ }
예제 #10
0
 public YouthConferenceModels(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
     : base(connection, backendConfiguration, metadataSource)
 {
 }
예제 #11
0
		public TelerikAcademyEntities(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
			:base(connection, backendConfiguration, metadataSource)
		{ }
예제 #12
0
 public TelerikAcademyEntities(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
     : base(connection, backendConfiguration, metadataSource)
 {
 }
예제 #13
0
 public SupermarketEntitiesMySQL(string connection, MetadataSource metadataSource)
     : base(connection, backend, metadataSource)
 {
 }
예제 #14
0
 public VehicleVendorMySqlDbContext(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
     : base(connection, backendConfiguration, metadataSource)
 {
 }
예제 #15
0
 public PollSystemDbCotnext(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
     : base(connection, backendConfiguration, metadataSource)
 {
 }
예제 #16
0
 public PerformanceTest(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
     : base(connection, backendConfiguration, metadataSource)
 {
 }
예제 #17
0
 public EntitiesModel(string connection, MetadataSource metadataSource)
     : base(connection, backend, metadataSource)
 {
 }
 public entidadDominio(string connection, MetadataSource metadataSource)
     : base(connection, backend, metadataSource)
 {
 }
		public PermissionsModel(string connection, MetadataSource metadataSource)
			:base(connection, backend, metadataSource)
		{ }
 public entidadDominio(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
     : base(connection, backendConfiguration, metadataSource)
 {
 }
예제 #21
0
		public CentaurFactoryModel(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
			:base(connection, backendConfiguration, metadataSource)
		{ }
        public async Task <GotoDefinitionResponse> Handle(GotoDefinitionRequest request)
        {
            var cancellationToken     = _externalSourceServiceFactory.CreateCancellationToken(_omnisharpOptions, request.Timeout);
            var externalSourceService = _externalSourceServiceFactory.Create(_omnisharpOptions);
            var document = externalSourceService.FindDocumentInCache(request.FileName) ??
                           _workspace.GetDocument(request.FileName);

            if (document == null)
            {
                return(new GotoDefinitionResponse());
            }

            var symbol = await GoToDefinitionHelpers.GetDefinitionSymbol(document, request.Line, request.Column, cancellationToken);

            if (symbol?.Locations.IsDefaultOrEmpty != false)
            {
                return(new GotoDefinitionResponse());
            }

            if (symbol.Locations[0].IsInSource)
            {
                var definitions = symbol.Locations
                                  .Select(location =>
                {
                    MetadataSource?metadataSource = null;
                    SourceGeneratedFileInfo?sourceGeneratedFileInfo = null;

                    if (IsMetaDataSource(location.SourceTree))
                    {
                        metadataSource = new MetadataSource()
                        {
                            AssemblyName = symbol.ContainingAssembly.Name,
                            ProjectName  = document.Project.Name,
                            TypeName     = symbol.GetSymbolName()
                        };
                    }
                    else
                    {
                        sourceGeneratedFileInfo = GoToDefinitionHelpers.GetSourceGeneratedFileInfo(_workspace, location);
                    }

                    return(new Definition
                    {
                        Location = location.GetMappedLineSpan().GetLocationFromFileLinePositionSpan(),
                        MetadataSource = metadataSource,
                        SourceGeneratedFileInfo = sourceGeneratedFileInfo
                    });
                })
                                  .ToList();

                return(new GotoDefinitionResponse()
                {
                    Definitions = definitions
                });
            }
            else
            {
                var maybeSpan = await GoToDefinitionHelpers.GetMetadataMappedSpan(document, symbol, externalSourceService, cancellationToken);

                if (maybeSpan is FileLinePositionSpan lineSpan)
                {
                    return(new GotoDefinitionResponse
                    {
                        Definitions = new()
                        {
                            new Definition
                            {
                                Location = lineSpan.GetLocationFromFileLinePositionSpan(),
                                MetadataSource = new OmniSharp.Models.Metadata.MetadataSource()
                                {
                                    AssemblyName = symbol.ContainingAssembly.Name,
                                    ProjectName = document.Project.Name,
                                    TypeName = symbol.GetSymbolName()
                                }
                            }
                        }
                    });
예제 #23
0
		public UserManagement(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
			:base(connection, backendConfiguration, metadataSource)
		{ }
예제 #24
0
 public iobserverContext(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
     : base(connection, backendConfiguration, metadataSource)
 {
 }
예제 #25
0
		public ClinicsMySQLContext(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
			:base(connection, backendConfiguration, metadataSource)
		{ }
예제 #26
0
 public SupermarketOAModel(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
     : base(connection, backendConfiguration, metadataSource)
 {
 }
		public OpenAccessMySQL(string connection, MetadataSource metadataSource)
			:base(connection, backend, metadataSource)
		{ }
예제 #28
0
 public NinjaCatalogueModel(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
     : base(connection, backendConfiguration, metadataSource)
 {
 }
		public EntitiesModel(string connection, MetadataSource metadataSource)
			:base(connection, backend, metadataSource)
		{ }
 public SupermarketModel(string connection, MetadataSource metadataSource)
     : base(connection, backend, metadataSource)
 {
 }
예제 #31
0
 public TypeOperand(MetadataSource source, int token)
     : base(source, token)
 {
 }
예제 #32
0
		public SupermarketMySqlEntities(string connection, MetadataSource metadataSource)
			:base(connection, backend, metadataSource)
		{ }
예제 #33
0
		public SupermarketModel(string connection, MetadataSource metadataSource)
			:base(connection, backend, metadataSource)
		{ }
예제 #34
0
 public SupermarketMySqlEntities(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
     : base(connection, backendConfiguration, metadataSource)
 {
 }
예제 #35
0
 public EntitiesModel(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
     : base(connection, backendConfiguration, metadataSource)
 {
 }
예제 #36
0
        public override INodeSchema GetSchema(IDictionary <string, DataSource> dataSources, IDictionary <string, Type> parameterTypes)
        {
            var schema     = new NodeSchema();
            var childCount = 0;

            if (MetadataSource.HasFlag(MetadataSource.Entity))
            {
                var entityProps = (IEnumerable <MetadataProperty>)_entityProps.Values;

                if (Query.Properties != null)
                {
                    entityProps = entityProps.Where(p => Query.Properties.AllProperties || Query.Properties.PropertyNames.Contains(p.PropertyName, StringComparer.OrdinalIgnoreCase));
                }

                foreach (var prop in entityProps)
                {
                    schema.Schema[$"{EntityAlias}.{prop.SqlName}"] = prop.Type;

                    if (!schema.Aliases.TryGetValue(prop.SqlName, out var aliases))
                    {
                        aliases = new List <string>();
                        schema.Aliases[prop.SqlName] = aliases;
                    }

                    aliases.Add($"{EntityAlias}.{prop.SqlName}");
                }

                schema.PrimaryKey = $"{EntityAlias}.{nameof(EntityMetadata.MetadataId)}";
            }

            if (MetadataSource.HasFlag(MetadataSource.Attribute))
            {
                var attributeProps = (IEnumerable <AttributeProperty>)_attributeProps.Values;

                if (Query.AttributeQuery?.Properties != null)
                {
                    attributeProps = attributeProps.Where(p => Query.AttributeQuery.Properties.AllProperties || Query.AttributeQuery.Properties.PropertyNames.Contains(p.PropertyName, StringComparer.OrdinalIgnoreCase));
                }

                foreach (var prop in attributeProps)
                {
                    schema.Schema[$"{AttributeAlias}.{prop.SqlName}"] = prop.Type;

                    if (!schema.Aliases.TryGetValue(prop.SqlName, out var aliases))
                    {
                        aliases = new List <string>();
                        schema.Aliases[prop.SqlName] = aliases;
                    }

                    aliases.Add($"{AttributeAlias}.{prop.SqlName}");
                }

                schema.PrimaryKey = $"{AttributeAlias}.{nameof(AttributeMetadata.MetadataId)}";
                childCount++;
            }

            if (MetadataSource.HasFlag(MetadataSource.OneToManyRelationship))
            {
                var relationshipProps = (IEnumerable <MetadataProperty>)_oneToManyRelationshipProps.Values;

                if (Query.RelationshipQuery?.Properties != null)
                {
                    relationshipProps = relationshipProps.Where(p => Query.RelationshipQuery.Properties.AllProperties || Query.RelationshipQuery.Properties.PropertyNames.Contains(p.PropertyName, StringComparer.OrdinalIgnoreCase));
                }

                foreach (var prop in relationshipProps)
                {
                    schema.Schema[$"{OneToManyRelationshipAlias}.{prop.SqlName}"] = prop.Type;

                    if (!schema.Aliases.TryGetValue(prop.SqlName, out var aliases))
                    {
                        aliases = new List <string>();
                        schema.Aliases[prop.SqlName] = aliases;
                    }

                    aliases.Add($"{OneToManyRelationshipAlias}.{prop.SqlName}");
                }

                schema.PrimaryKey = $"{OneToManyRelationshipAlias}.{nameof(RelationshipMetadataBase.MetadataId)}";
                childCount++;
            }

            if (MetadataSource.HasFlag(MetadataSource.ManyToOneRelationship))
            {
                var relationshipProps = (IEnumerable <MetadataProperty>)_oneToManyRelationshipProps.Values;

                if (Query.RelationshipQuery?.Properties != null)
                {
                    relationshipProps = relationshipProps.Where(p => Query.RelationshipQuery.Properties.AllProperties || Query.RelationshipQuery.Properties.PropertyNames.Contains(p.PropertyName, StringComparer.OrdinalIgnoreCase));
                }

                foreach (var prop in relationshipProps)
                {
                    schema.Schema[$"{ManyToOneRelationshipAlias}.{prop.SqlName}"] = prop.Type;

                    if (!schema.Aliases.TryGetValue(prop.SqlName, out var aliases))
                    {
                        aliases = new List <string>();
                        schema.Aliases[prop.SqlName] = aliases;
                    }

                    aliases.Add($"{ManyToOneRelationshipAlias}.{prop.SqlName}");
                }

                schema.PrimaryKey = $"{ManyToOneRelationshipAlias}.{nameof(RelationshipMetadataBase.MetadataId)}";
                childCount++;
            }

            if (MetadataSource.HasFlag(MetadataSource.ManyToManyRelationship))
            {
                var relationshipProps = (IEnumerable <MetadataProperty>)_manyToManyRelationshipProps.Values;

                if (Query.RelationshipQuery?.Properties != null)
                {
                    relationshipProps = relationshipProps.Where(p => Query.RelationshipQuery.Properties.AllProperties || Query.RelationshipQuery.Properties.PropertyNames.Contains(p.PropertyName, StringComparer.OrdinalIgnoreCase));
                }

                foreach (var prop in relationshipProps)
                {
                    schema.Schema[$"{ManyToManyRelationshipAlias}.{prop.SqlName}"] = prop.Type;

                    if (!schema.Aliases.TryGetValue(prop.SqlName, out var aliases))
                    {
                        aliases = new List <string>();
                        schema.Aliases[prop.SqlName] = aliases;
                    }

                    aliases.Add($"{ManyToManyRelationshipAlias}.{prop.SqlName}");
                }

                schema.PrimaryKey = $"{ManyToManyRelationshipAlias}.{nameof(RelationshipMetadataBase.MetadataId)}";
                childCount++;
            }

            if (childCount > 1)
            {
                schema.PrimaryKey = null;
            }

            return(schema);
        }
		public PermissionsModel(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
			:base(connection, backendConfiguration, metadataSource)
		{ }
예제 #38
0
        protected override IEnumerable <Entity> ExecuteInternal(IDictionary <string, DataSource> dataSources, IQueryExecutionOptions options, IDictionary <string, Type> parameterTypes, IDictionary <string, object> parameterValues)
        {
            if (MetadataSource.HasFlag(MetadataSource.Attribute))
            {
                if (Query.Properties == null)
                {
                    Query.Properties = new MetadataPropertiesExpression();
                }

                // Ensure the entity metadata contains the attributes
                if (!Query.Properties.AllProperties && !Query.Properties.PropertyNames.Contains(nameof(EntityMetadata.Attributes)))
                {
                    Query.Properties.PropertyNames.Add(nameof(EntityMetadata.Attributes));
                }
            }

            if (MetadataSource.HasFlag(MetadataSource.OneToManyRelationship))
            {
                if (Query.Properties == null)
                {
                    Query.Properties = new MetadataPropertiesExpression();
                }

                // Ensure the entity metadata contains the relationships
                if (!Query.Properties.AllProperties && !Query.Properties.PropertyNames.Contains(nameof(EntityMetadata.OneToManyRelationships)))
                {
                    Query.Properties.PropertyNames.Add(nameof(EntityMetadata.OneToManyRelationships));
                }
            }

            if (MetadataSource.HasFlag(MetadataSource.ManyToOneRelationship))
            {
                if (Query.Properties == null)
                {
                    Query.Properties = new MetadataPropertiesExpression();
                }

                // Ensure the entity metadata contains the relationships
                if (!Query.Properties.AllProperties && !Query.Properties.PropertyNames.Contains(nameof(EntityMetadata.ManyToOneRelationships)))
                {
                    Query.Properties.PropertyNames.Add(nameof(EntityMetadata.ManyToOneRelationships));
                }
            }

            if (MetadataSource.HasFlag(MetadataSource.ManyToManyRelationship))
            {
                if (Query.Properties == null)
                {
                    Query.Properties = new MetadataPropertiesExpression();
                }

                // Ensure the entity metadata contains the relationships
                if (!Query.Properties.AllProperties && !Query.Properties.PropertyNames.Contains(nameof(EntityMetadata.ManyToManyRelationships)))
                {
                    Query.Properties.PropertyNames.Add(nameof(EntityMetadata.ManyToManyRelationships));
                }
            }

            if (!dataSources.TryGetValue(DataSource, out var dataSource))
            {
                throw new NotSupportedQueryFragmentException("Missing datasource " + DataSource);
            }

            var resp = (RetrieveMetadataChangesResponse)dataSource.Connection.Execute(new RetrieveMetadataChangesRequest {
                Query = Query
            });
            var entityProps = typeof(EntityMetadata).GetProperties().ToDictionary(p => p.Name);
            var oneToManyRelationshipProps  = typeof(OneToManyRelationshipMetadata).GetProperties().ToDictionary(p => p.Name);
            var manyToManyRelationshipProps = typeof(ManyToManyRelationshipMetadata).GetProperties().ToDictionary(p => p.Name);

            var results = resp.EntityMetadata.Select(e => new { Entity = e, Attribute = (AttributeMetadata)null, Relationship = (RelationshipMetadataBase)null });

            if (MetadataSource.HasFlag(MetadataSource.Attribute))
            {
                results = results.SelectMany(r => r.Entity.Attributes.Select(a => new { Entity = r.Entity, Attribute = a, Relationship = r.Relationship }));
            }

            if (MetadataSource.HasFlag(MetadataSource.OneToManyRelationship))
            {
                results = results.SelectMany(r => r.Entity.OneToManyRelationships.Select(om => new { Entity = r.Entity, Attribute = r.Attribute, Relationship = (RelationshipMetadataBase)om }));
            }

            if (MetadataSource.HasFlag(MetadataSource.ManyToOneRelationship))
            {
                results = results.SelectMany(r => r.Entity.ManyToOneRelationships.Select(mo => new { Entity = r.Entity, Attribute = r.Attribute, Relationship = (RelationshipMetadataBase)mo }));
            }

            if (MetadataSource.HasFlag(MetadataSource.ManyToManyRelationship))
            {
                results = results.SelectMany(r => r.Entity.ManyToManyRelationships.Where(mm => ManyToManyRelationshipJoin == null || ((string)typeof(ManyToManyRelationshipMetadata).GetProperty(ManyToManyRelationshipJoin).GetValue(mm)) == r.Entity.LogicalName).Select(mm => new { Entity = r.Entity, Attribute = r.Attribute, Relationship = (RelationshipMetadataBase)mm }));
            }


            foreach (var result in results)
            {
                var converted = new Entity();

                if (MetadataSource.HasFlag(MetadataSource.Entity))
                {
                    converted.LogicalName = "entity";
                    converted.Id          = result.Entity.MetadataId ?? Guid.Empty;

                    foreach (var prop in _entityCols)
                    {
                        converted[prop.Key] = prop.Value.Accessor(result.Entity);
                    }
                }

                if (MetadataSource.HasFlag(MetadataSource.Attribute))
                {
                    converted.LogicalName = "attribute";
                    converted.Id          = result.Attribute.MetadataId ?? Guid.Empty;

                    foreach (var prop in _attributeCols)
                    {
                        if (!prop.Value.Accessors.TryGetValue(result.Attribute.GetType(), out var accessor))
                        {
                            converted[prop.Key] = SqlTypeConverter.GetNullValue(prop.Value.Type);
                            continue;
                        }

                        converted[prop.Key] = accessor(result.Attribute);
                    }
                }

                if (MetadataSource.HasFlag(MetadataSource.OneToManyRelationship))
                {
                    converted.LogicalName = "relationship_1_n";
                    converted.Id          = result.Relationship.MetadataId ?? Guid.Empty;

                    foreach (var prop in _oneToManyRelationshipCols)
                    {
                        converted[prop.Key] = prop.Value.Accessor(result.Relationship);
                    }
                }

                if (MetadataSource.HasFlag(MetadataSource.ManyToOneRelationship))
                {
                    converted.LogicalName = "relationship_n_1";
                    converted.Id          = result.Relationship.MetadataId ?? Guid.Empty;

                    foreach (var prop in _manyToOneRelationshipCols)
                    {
                        converted[prop.Key] = prop.Value.Accessor(result.Relationship);
                    }
                }

                if (MetadataSource.HasFlag(MetadataSource.ManyToManyRelationship))
                {
                    converted.LogicalName = "relationship_n_n";
                    converted.Id          = result.Relationship.MetadataId ?? Guid.Empty;

                    foreach (var prop in _manyToManyRelationshipCols)
                    {
                        converted[prop.Key] = prop.Value.Accessor(result.Relationship);
                    }
                }

                yield return(converted);
            }
        }
 /// <summary>
 /// Gets the driver metadata for a driver update
 /// </summary>
 /// <returns>Driver specific metadata</returns>
 public IEnumerable <DriverMetadata> GetDriverMetadata() => MetadataSource.GetDriverMetadata(this.Identity);
예제 #40
0
        public PharmacyMySqlModel(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
			:base(connection, backendConfiguration, metadataSource)
		{ }
예제 #41
0
		public AriUMContext(string connection, MetadataSource metadataSource)
			:base(connection, backend, metadataSource)
		{ }
예제 #42
0
 public ValueTask <ParsingStatus> Get(Guid fileId, MetadataSource source)
 => _meidoDbContext.ParsingStatuses
 .FindAsync(fileId, source);
예제 #43
0
		public UserManagement(string connection, MetadataSource metadataSource)
			:base(connection, backend, metadataSource)
		{ }
예제 #44
0
 public NorthwindContext(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
     : base(connection, backendConfiguration, metadataSource)
 {
 }
예제 #45
0
		public VehicleVendorMySqlDbContext(string connection, MetadataSource metadataSource)
			:base(connection, backend, metadataSource)
		{ }
예제 #46
0
 public FluentModel(string connection, MetadataSource metadataSource)
     : base(connection, backend, metadataSource)
 {
 }
예제 #47
0
		public CatalogEntities(string connection, MetadataSource metadataSource)
			:base(connection, backend, metadataSource)
		{ }
		public TelerikAcademyModels(string connection, MetadataSource metadataSource)
			:base(connection, backend, metadataSource)
		{ }
예제 #49
0
		public CorridaModel(string connection, MetadataSource metadataSource)
			:base(connection, backend, metadataSource)
		{ }
		public SupermarketMySqlContext(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
			:base(connection, backendConfiguration, metadataSource)
		{ }
		public ElectronicStoreMySQLFluentModel(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
			:base(connection, backendConfiguration, metadataSource)
		{ }
예제 #52
0
		public Northwind(string connection, MetadataSource metadataSource)
			:base(connection, backend, metadataSource)
		{ }
		public OpenAccessMySQL(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
			:base(connection, backendConfiguration, metadataSource)
		{ }
예제 #54
0
 public NorthwindModel(string connection, MetadataSource metadataSource)
     : base(connection, backend, metadataSource)
 {
 }
예제 #55
0
		public ProductsModel(string connection, MetadataSource metadataSource)
			:base(connection, backend, metadataSource)
		{ }
예제 #56
0
 protected MetadataOperand(MetadataSource source, int token)
     : base(4, token)
 {
 }
예제 #57
0
		public Northwind(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
			:base(connection, backendConfiguration, metadataSource)
		{ }
예제 #58
0
 public StringOperand(MetadataSource source, int token)
     : base(source, token)
 {
 }
		public EntitiesModel(string connection, BackendConfiguration backendConfiguration, MetadataSource metadataSource)
			:base(connection, backendConfiguration, metadataSource)
		{ }
예제 #60
0
 public MethodOperand(MetadataSource source, int token)
     : base(source, token)
 {
 }