コード例 #1
0
        protected override void OnViewSet()
        {
            View.InvoiceContractOkClicked += InvoiceContractOkClicked;
            var metadataService = new MetadataServiceClient();
            var entityMetadata  = metadataService.GetMetaEntities().First(e => e.TableName == "Contract");
            int langId          = System.Globalization.CultureInfo.CurrentCulture.LCID;
            var labels          = metadataService.GetLocalizedLabels(langId);

            View.InitEditors(entityMetadata, labels);

            if (WorkItem.State["invoiceContractList"] != null)
            {
                var invoiceContractList = (IList)WorkItem.State["invoiceContractList"];
                View.SelectedContracts.Clear();
                foreach (object obj in invoiceContractList)
                {
                    dynamic dynamicEntity = new SysBits.DynamicProxies.DynamicProxy(obj);
                    Guid    key           = dynamicEntity.ContractId;
                    if (!View.SelectedContracts.ContainsKey(key))
                    {
                        View.SelectedContracts.Add(key, obj);
                    }
                }
            }
            View.BindList(GetData());
            View.ShowView();
        }
コード例 #2
0
 /// <summary>Snippet for GetEntity</summary>
 public void GetEntityResourceNames()
 {
     // Snippet: GetEntity(EntityName, CallSettings)
     // Create client
     MetadataServiceClient metadataServiceClient = MetadataServiceClient.Create();
     // Initialize request argument(s)
     EntityName name = EntityName.FromProjectLocationLakeZoneEntity("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]");
     // Make the request
     Entity response = metadataServiceClient.GetEntity(name);
     // End snippet
 }
コード例 #3
0
 /// <summary>Snippet for GetEntity</summary>
 public void GetEntity()
 {
     // Snippet: GetEntity(string, CallSettings)
     // Create client
     MetadataServiceClient metadataServiceClient = MetadataServiceClient.Create();
     // Initialize request argument(s)
     string name = "projects/[PROJECT]/locations/[LOCATION]/lakes/[LAKE]/zones/[ZONE]/entities/[ENTITY]";
     // Make the request
     Entity response = metadataServiceClient.GetEntity(name);
     // End snippet
 }
コード例 #4
0
        /// <summary>Snippet for GetEntityAsync</summary>
        public async Task GetEntityAsync()
        {
            // Snippet: GetEntityAsync(string, CallSettings)
            // Additional: GetEntityAsync(string, CancellationToken)
            // Create client
            MetadataServiceClient metadataServiceClient = await MetadataServiceClient.CreateAsync();

            // Initialize request argument(s)
            string name = "projects/[PROJECT]/locations/[LOCATION]/lakes/[LAKE]/zones/[ZONE]/entities/[ENTITY]";
            // Make the request
            Entity response = await metadataServiceClient.GetEntityAsync(name);

            // End snippet
        }
コード例 #5
0
        /// <summary>Snippet for GetPartitionAsync</summary>
        public async Task GetPartitionResourceNamesAsync()
        {
            // Snippet: GetPartitionAsync(PartitionName, CallSettings)
            // Additional: GetPartitionAsync(PartitionName, CancellationToken)
            // Create client
            MetadataServiceClient metadataServiceClient = await MetadataServiceClient.CreateAsync();

            // Initialize request argument(s)
            PartitionName name = PartitionName.FromProjectLocationLakeZoneEntityPartition("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]", "[PARTITION]");
            // Make the request
            Partition response = await metadataServiceClient.GetPartitionAsync(name);

            // End snippet
        }
コード例 #6
0
 /// <summary>Snippet for GetPartition</summary>
 public void GetPartitionRequestObject()
 {
     // Snippet: GetPartition(GetPartitionRequest, CallSettings)
     // Create client
     MetadataServiceClient metadataServiceClient = MetadataServiceClient.Create();
     // Initialize request argument(s)
     GetPartitionRequest request = new GetPartitionRequest
     {
         PartitionName = PartitionName.FromProjectLocationLakeZoneEntityPartition("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]", "[PARTITION]"),
     };
     // Make the request
     Partition response = metadataServiceClient.GetPartition(request);
     // End snippet
 }
コード例 #7
0
        /// <summary>Snippet for ListEntitiesAsync</summary>
        public async Task ListEntitiesRequestObjectAsync()
        {
            // Snippet: ListEntitiesAsync(ListEntitiesRequest, CallSettings)
            // Create client
            MetadataServiceClient metadataServiceClient = await MetadataServiceClient.CreateAsync();

            // Initialize request argument(s)
            ListEntitiesRequest request = new ListEntitiesRequest
            {
                ParentAsZoneName = ZoneName.FromProjectLocationLakeZone("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]"),
                View             = ListEntitiesRequest.Types.EntityView.Unspecified,
                Filter           = "",
            };
            // Make the request
            PagedAsyncEnumerable <ListEntitiesResponse, Entity> response = metadataServiceClient.ListEntitiesAsync(request);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((Entity item) =>
            {
                // Do something with each item
                Console.WriteLine(item);
            });

            // Or iterate over pages (of server-defined size), performing one RPC per page
            await response.AsRawResponses().ForEachAsync((ListEntitiesResponse page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (Entity item in page)
                {
                    // Do something with each item
                    Console.WriteLine(item);
                }
            });

            // Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
            int           pageSize   = 10;
            Page <Entity> singlePage = await response.ReadPageAsync(pageSize);

            // Do something with the page of items
            Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
            foreach (Entity item in singlePage)
            {
                // Do something with each item
                Console.WriteLine(item);
            }
            // Store the pageToken, for when the next page is required.
            string nextPageToken = singlePage.NextPageToken;
            // End snippet
        }
コード例 #8
0
 /// <summary>Snippet for GetEntity</summary>
 public void GetEntityRequestObject()
 {
     // Snippet: GetEntity(GetEntityRequest, CallSettings)
     // Create client
     MetadataServiceClient metadataServiceClient = MetadataServiceClient.Create();
     // Initialize request argument(s)
     GetEntityRequest request = new GetEntityRequest
     {
         EntityName = EntityName.FromProjectLocationLakeZoneEntity("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]"),
         View       = GetEntityRequest.Types.EntityView.Unspecified,
     };
     // Make the request
     Entity response = metadataServiceClient.GetEntity(request);
     // End snippet
 }
コード例 #9
0
        /// <summary>Snippet for ListPartitions</summary>
        public void ListPartitionsRequestObject()
        {
            // Snippet: ListPartitions(ListPartitionsRequest, CallSettings)
            // Create client
            MetadataServiceClient metadataServiceClient = MetadataServiceClient.Create();
            // Initialize request argument(s)
            ListPartitionsRequest request = new ListPartitionsRequest
            {
                ParentAsEntityName = EntityName.FromProjectLocationLakeZoneEntity("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]"),
                Filter             = "",
            };
            // Make the request
            PagedEnumerable <ListPartitionsResponse, Partition> response = metadataServiceClient.ListPartitions(request);

            // Iterate over all response items, lazily performing RPCs as required
            foreach (Partition item in response)
            {
                // Do something with each item
                Console.WriteLine(item);
            }

            // Or iterate over pages (of server-defined size), performing one RPC per page
            foreach (ListPartitionsResponse page in response.AsRawResponses())
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (Partition item in page)
                {
                    // Do something with each item
                    Console.WriteLine(item);
                }
            }

            // Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
            int pageSize = 10;
            Page <Partition> singlePage = response.ReadPage(pageSize);

            // Do something with the page of items
            Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
            foreach (Partition item in singlePage)
            {
                // Do something with each item
                Console.WriteLine(item);
            }
            // Store the pageToken, for when the next page is required.
            string nextPageToken = singlePage.NextPageToken;
            // End snippet
        }
コード例 #10
0
        /// <summary>Snippet for ListPartitionsAsync</summary>
        public async Task ListPartitionsResourceNamesAsync()
        {
            // Snippet: ListPartitionsAsync(EntityName, string, int?, CallSettings)
            // Create client
            MetadataServiceClient metadataServiceClient = await MetadataServiceClient.CreateAsync();

            // Initialize request argument(s)
            EntityName parent = EntityName.FromProjectLocationLakeZoneEntity("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]");
            // Make the request
            PagedAsyncEnumerable <ListPartitionsResponse, Partition> response = metadataServiceClient.ListPartitionsAsync(parent);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((Partition item) =>
            {
                // Do something with each item
                Console.WriteLine(item);
            });

            // Or iterate over pages (of server-defined size), performing one RPC per page
            await response.AsRawResponses().ForEachAsync((ListPartitionsResponse page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (Partition item in page)
                {
                    // Do something with each item
                    Console.WriteLine(item);
                }
            });

            // Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
            int pageSize = 10;
            Page <Partition> singlePage = await response.ReadPageAsync(pageSize);

            // Do something with the page of items
            Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
            foreach (Partition item in singlePage)
            {
                // Do something with each item
                Console.WriteLine(item);
            }
            // Store the pageToken, for when the next page is required.
            string nextPageToken = singlePage.NextPageToken;
            // End snippet
        }
コード例 #11
0
        /// <summary>Snippet for GetEntityAsync</summary>
        public async Task GetEntityRequestObjectAsync()
        {
            // Snippet: GetEntityAsync(GetEntityRequest, CallSettings)
            // Additional: GetEntityAsync(GetEntityRequest, CancellationToken)
            // Create client
            MetadataServiceClient metadataServiceClient = await MetadataServiceClient.CreateAsync();

            // Initialize request argument(s)
            GetEntityRequest request = new GetEntityRequest
            {
                EntityName = EntityName.FromProjectLocationLakeZoneEntity("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]"),
                View       = GetEntityRequest.Types.EntityView.Unspecified,
            };
            // Make the request
            Entity response = await metadataServiceClient.GetEntityAsync(request);

            // End snippet
        }
コード例 #12
0
        /// <summary>Snippet for ListPartitions</summary>
        public void ListPartitions()
        {
            // Snippet: ListPartitions(string, string, int?, CallSettings)
            // Create client
            MetadataServiceClient metadataServiceClient = MetadataServiceClient.Create();
            // Initialize request argument(s)
            string parent = "projects/[PROJECT]/locations/[LOCATION]/lakes/[LAKE]/zones/[ZONE]/entities/[ENTITY]";
            // Make the request
            PagedEnumerable <ListPartitionsResponse, Partition> response = metadataServiceClient.ListPartitions(parent);

            // Iterate over all response items, lazily performing RPCs as required
            foreach (Partition item in response)
            {
                // Do something with each item
                Console.WriteLine(item);
            }

            // Or iterate over pages (of server-defined size), performing one RPC per page
            foreach (ListPartitionsResponse page in response.AsRawResponses())
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (Partition item in page)
                {
                    // Do something with each item
                    Console.WriteLine(item);
                }
            }

            // Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
            int pageSize = 10;
            Page <Partition> singlePage = response.ReadPage(pageSize);

            // Do something with the page of items
            Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
            foreach (Partition item in singlePage)
            {
                // Do something with each item
                Console.WriteLine(item);
            }
            // Store the pageToken, for when the next page is required.
            string nextPageToken = singlePage.NextPageToken;
            // End snippet
        }
コード例 #13
0
 static MetadataRepository()
 {
     _metadataServiceClient = new MetadataServiceClient("MetadataServiceEndPoint", ServerUrl);
 }
コード例 #14
0
ファイル: MetadataProvider.cs プロジェクト: ewin66/Katrin-CRM
        public static MetadataServiceClient CreateServiceClient()
        {
            var client = new MetadataServiceClient("MetadataServiceEndPoint", ServerUrl);

            return(client);
        }
コード例 #15
0
ファイル: MetadataProvider.cs プロジェクト: ewin66/Katrin-CRM
 public MetadataProvider()
 {
     _metadataServiceClient = CreateServiceClient();
 }