odata

Azure API Management issue with OData

馋奶兔 提交于 2020-07-30 09:07:26
问题 We have an OData v4 API that we are putting behind an Azure API Management (AAM) service, but have run into a problem configuring the routes/oerations. In a nutshell, the issue is that AAM will reject a query for a route/operation unless it is explicitly configured (you get a 404 error), but with OData there can be a route for every attribute (property) of every operation (endpoint). The problem quickly becomes unmanageable. OData allows you to query an individual attribute/property (eg GET ~

Salesforce集成:在架构层面上需要考虑的5个问题

你。 提交于 2020-07-27 21:46:09
无论是将 Salesforce 中其他部门的数据和旧系统(SAP、Oracle、Microsoft 等无所不包)中的数据实时合并为 Salesforce 对象,还是系统集成后台其他办公系统、社区等,你都需要一个集成工具。而一个统一的、面向未来的平台,可以实现多种类型的集成,包括 API 集成、数据集成、业务逻辑集成和用户界面集成。 如何从您的Salesforce集成解决方案中获得最大收益?尽管所有组织和应用程序都是不同的,但是建议您在设计Salesforce集成解决方案时在架构层面上考虑以下几个问题。 1.牢记Org策略 “Org”是我们所称的Salesforce的一个特定实例。在许多组织中,跨不同业务部门有多个Orgs在使用,并且许多Orgs之间需要连接。虽然从技术上讲,这可以通过各种方式实现,但从战略角度来看,了解Salesforce Orgs 本身的整合或持续分离的长期计划是值得的。我们称之为“Org策略”。 在大多数情况下,漫长的映射是不可行的,但是,花时间去考虑Org策略是值得的,因为它促使我们思考一些关键性的问题,例如: • 对于Org我们的策略是什么?当前的结构是否支持或阻碍了我们的业务?集成工作是否掩盖了更根本的问题? • 当有更好的业务用例用于在Salesforce平台上寻找集成的AppExchange解决方案时,我们是否正在解决集成问题? •

Net Core: Using OData in Onion Architecture, Convert Query Parameters Into Linq

ε祈祈猫儿з 提交于 2020-07-25 06:36:09
问题 We are creating a Search Function to return Matching Address Records in large database. Address Table contains 20+ columns in SQL table, needs to query using different OData parameters, (EqualTo, Contains, Starts With, etc). Trying to use OData, without injecting DBContext into API Controller. This is not allowed in current architecture. How can code written to allow this? *We have it working utilizing ProjectTo. However OData Http specific features are being passed into Non-Api levels.

Net Core: Using OData in Onion Architecture, Convert Query Parameters Into Linq

﹥>﹥吖頭↗ 提交于 2020-07-25 06:35:20
问题 We are creating a Search Function to return Matching Address Records in large database. Address Table contains 20+ columns in SQL table, needs to query using different OData parameters, (EqualTo, Contains, Starts With, etc). Trying to use OData, without injecting DBContext into API Controller. This is not allowed in current architecture. How can code written to allow this? *We have it working utilizing ProjectTo. However OData Http specific features are being passed into Non-Api levels.

Net Core: Using OData in Onion Architecture, Convert Query Parameters Into Linq

你说的曾经没有我的故事 提交于 2020-07-25 06:34:32
问题 We are creating a Search Function to return Matching Address Records in large database. Address Table contains 20+ columns in SQL table, needs to query using different OData parameters, (EqualTo, Contains, Starts With, etc). Trying to use OData, without injecting DBContext into API Controller. This is not allowed in current architecture. How can code written to allow this? *We have it working utilizing ProjectTo. However OData Http specific features are being passed into Non-Api levels.

Problem in adding multi filter to odata service

别等时光非礼了梦想. 提交于 2020-07-23 07:53:50
问题 I have the following code. I am trying to read 3 different values for PO from input fields then displaying the result in list. Program is working fine for single input but for multiple inputs i am facing issues. var oV1 = this.getView().byId("oInput").getValue(); var oV2 = this.getView().byId("oInput1").getValue(); var oV3 = this.getView().byId("oInput2").getValue(); var oFilter = [new sap.ui.model.Filter("Ebeln", sap.ui.model.FilterOperator.Contains, oV1)]; var oFilter1 = [new sap.ui.model

Problem in adding multi filter to odata service

人盡茶涼 提交于 2020-07-23 07:53:05
问题 I have the following code. I am trying to read 3 different values for PO from input fields then displaying the result in list. Program is working fine for single input but for multiple inputs i am facing issues. var oV1 = this.getView().byId("oInput").getValue(); var oV2 = this.getView().byId("oInput1").getValue(); var oV3 = this.getView().byId("oInput2").getValue(); var oFilter = [new sap.ui.model.Filter("Ebeln", sap.ui.model.FilterOperator.Contains, oV1)]; var oFilter1 = [new sap.ui.model

Problem in adding multi filter to odata service

一曲冷凌霜 提交于 2020-07-23 07:51:06
问题 I have the following code. I am trying to read 3 different values for PO from input fields then displaying the result in list. Program is working fine for single input but for multiple inputs i am facing issues. var oV1 = this.getView().byId("oInput").getValue(); var oV2 = this.getView().byId("oInput1").getValue(); var oV3 = this.getView().byId("oInput2").getValue(); var oFilter = [new sap.ui.model.Filter("Ebeln", sap.ui.model.FilterOperator.Contains, oV1)]; var oFilter1 = [new sap.ui.model

Microsoft Graph API - unterminated string literal Error when searching for emails which contain # in the subject

和自甴很熟 提交于 2020-07-08 02:45:49
问题 When i am searching for emails on office 365 in a batch query, i am getting a unterminated string literal error. This is happening only when i have a # character in the subject search query. Forum discussions like this (https://issues.oasis-open.org/browse/ODATA-1101) have suggested me to percentage encode the # symbol but it gave the same error. When I am POSTing the below request to the batch endpoint(https://graph.microsoft.com/v1.0/$batch) { "requests": [{ "id": 1, "method": "GET", "url":

Microsoft Graph API - unterminated string literal Error when searching for emails which contain # in the subject

牧云@^-^@ 提交于 2020-07-08 02:44:14
问题 When i am searching for emails on office 365 in a batch query, i am getting a unterminated string literal error. This is happening only when i have a # character in the subject search query. Forum discussions like this (https://issues.oasis-open.org/browse/ODATA-1101) have suggested me to percentage encode the # symbol but it gave the same error. When I am POSTing the below request to the batch endpoint(https://graph.microsoft.com/v1.0/$batch) { "requests": [{ "id": 1, "method": "GET", "url":