{"id":723,"date":"2022-09-27T19:50:15","date_gmt":"2022-09-27T19:50:15","guid":{"rendered":"https:\/\/www.naveedulhaq.com\/?p=723"},"modified":"2022-09-27T19:50:23","modified_gmt":"2022-09-27T19:50:23","slug":"resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported","status":"publish","type":"post","link":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\/","title":{"rendered":"Resolved: The specified type member &#8216;Date&#8217; is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported."},"content":{"rendered":"\n<p>I come across the following error while comparing Date in Linq lambda in the .NET C# project. The exact error is <\/p>\n\n\n\n<p><strong>The specified type member &#8216;Date&#8217; is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.<\/strong><\/p>\n\n\n\n<p>My code below<\/p>\n\n\n\n<pre><code> _db.Products.Any(i => i.VariationId == variantid &amp;&amp; i.LastUpdate.Date > DateTime.Now.Date);<\/code><\/pre>\n\n\n\n<p>I was using the visual studio 2022 community edition. When I investigate the issue, it seems like <code><strong>DateTime.Date<\/strong><\/code>\u00a0cannot be converted to SQL<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Solution<\/h2>\n\n\n\n<p>The solution is to use <\/p>\n\n\n\n<pre><code><pre><code>DbFunctions.TruncateTime(DateTime)<\/code><\/pre><\/code><\/pre>\n\n\n\n<p>The modified code will be like below<\/p>\n\n\n\n<pre><code>_db.Products.Any(i => i.VariationId == variantid &amp;&amp; DbFunctions.TruncateTime(i.LastUpdate) &lt; DateTime.Now);<\/code><\/pre>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>I come across the following error while comparing Date in Linq lambda in the .NET C# project. The exact error is The specified type member&#8230;<\/p>\n","protected":false},"author":1,"featured_media":641,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[11,8,32,23],"class_list":["post-723","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-dot-net-core","tag-dot-net-core","tag-dot-net-framework","tag-developer","tag-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Resolved: The specified type member &#039;Date&#039; is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported. - Naveed Ul-Haq&#039;s blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Resolved: The specified type member &#039;Date&#039; is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported. - Naveed Ul-Haq&#039;s blog\" \/>\n<meta property=\"og:description\" content=\"I come across the following error while comparing Date in Linq lambda in the .NET C# project. The exact error is The specified type member...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\/\" \/>\n<meta property=\"og:site_name\" content=\"Naveed Ul-Haq&#039;s blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-27T19:50:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-27T19:50:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2021\/11\/240px-.NET_Logo.svg_.png\" \/>\n\t<meta property=\"og:image:width\" content=\"240\" \/>\n\t<meta property=\"og:image:height\" content=\"240\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Naveed Ul-Haq\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Naveed Ul-Haq\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\\\/\"},\"author\":{\"name\":\"Naveed Ul-Haq\",\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/#\\\/schema\\\/person\\\/dd6db5980b965fcae41e096d357c65c9\"},\"headline\":\"Resolved: The specified type member &#8216;Date&#8217; is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.\",\"datePublished\":\"2022-09-27T19:50:15+00:00\",\"dateModified\":\"2022-09-27T19:50:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\\\/\"},\"wordCount\":103,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/#\\\/schema\\\/person\\\/dd6db5980b965fcae41e096d357c65c9\"},\"image\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.naveedulhaq.com\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/240px-.NET_Logo.svg_.png\",\"keywords\":[\".net core\",\".net framework\",\"developer\",\"development\"],\"articleSection\":[\".NET\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\\\/\",\"url\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\\\/\",\"name\":\"Resolved: The specified type member 'Date' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported. - Naveed Ul-Haq&#039;s blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.naveedulhaq.com\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/240px-.NET_Logo.svg_.png\",\"datePublished\":\"2022-09-27T19:50:15+00:00\",\"dateModified\":\"2022-09-27T19:50:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.naveedulhaq.com\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/240px-.NET_Logo.svg_.png\",\"contentUrl\":\"https:\\\/\\\/www.naveedulhaq.com\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/240px-.NET_Logo.svg_.png\",\"width\":240,\"height\":240,\"caption\":\".net\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/index.php\\\/dot-net-core\\\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.naveedulhaq.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Resolved: The specified type member &#8216;Date&#8217; is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/#website\",\"url\":\"https:\\\/\\\/www.naveedulhaq.com\\\/\",\"name\":\"Naveed Ul-Haq's blog\",\"description\":\"AI, Optimizely, Azure &amp; more\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/#\\\/schema\\\/person\\\/dd6db5980b965fcae41e096d357c65c9\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.naveedulhaq.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.naveedulhaq.com\\\/#\\\/schema\\\/person\\\/dd6db5980b965fcae41e096d357c65c9\",\"name\":\"Naveed Ul-Haq\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g\",\"caption\":\"Naveed Ul-Haq\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g\"},\"description\":\"I lead engineering delivery teams for digital commerce and digital experience platforms, combining hands-on architecture experience with strong delivery governance. Over 20+ years, I\u2019ve built and led cross\u2011functional teams (engineering, BA, QA) delivering modern cloud solutions on Azure, microservices, APIs and eCommerce\\\/CMS platforms. My recent focus includes AI-enabled commerce automation: product ingestion and enrichment workflows, content optimisation for SEO and shopping feeds, and agentic tooling to improve marketing and accessibility workflows. I\u2019m passionate about building high-performing teams, establishing quality\\\/release standards, and delivering measurable outcomes across performance, reliability, and speed of change.\",\"sameAs\":[\"https:\\\/\\\/www.naveedulhaq.com\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/naveedulhaq\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Resolved: The specified type member 'Date' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported. - Naveed Ul-Haq&#039;s blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\/","og_locale":"en_GB","og_type":"article","og_title":"Resolved: The specified type member 'Date' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported. - Naveed Ul-Haq&#039;s blog","og_description":"I come across the following error while comparing Date in Linq lambda in the .NET C# project. The exact error is The specified type member...","og_url":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\/","og_site_name":"Naveed Ul-Haq&#039;s blog","article_published_time":"2022-09-27T19:50:15+00:00","article_modified_time":"2022-09-27T19:50:23+00:00","og_image":[{"width":240,"height":240,"url":"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2021\/11\/240px-.NET_Logo.svg_.png","type":"image\/png"}],"author":"Naveed Ul-Haq","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Naveed Ul-Haq","Estimated reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\/#article","isPartOf":{"@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\/"},"author":{"name":"Naveed Ul-Haq","@id":"https:\/\/www.naveedulhaq.com\/#\/schema\/person\/dd6db5980b965fcae41e096d357c65c9"},"headline":"Resolved: The specified type member &#8216;Date&#8217; is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.","datePublished":"2022-09-27T19:50:15+00:00","dateModified":"2022-09-27T19:50:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\/"},"wordCount":103,"commentCount":0,"publisher":{"@id":"https:\/\/www.naveedulhaq.com\/#\/schema\/person\/dd6db5980b965fcae41e096d357c65c9"},"image":{"@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\/#primaryimage"},"thumbnailUrl":"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2021\/11\/240px-.NET_Logo.svg_.png","keywords":[".net core",".net framework","developer","development"],"articleSection":[".NET"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\/","url":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\/","name":"Resolved: The specified type member 'Date' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported. - Naveed Ul-Haq&#039;s blog","isPartOf":{"@id":"https:\/\/www.naveedulhaq.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\/#primaryimage"},"image":{"@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\/#primaryimage"},"thumbnailUrl":"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2021\/11\/240px-.NET_Logo.svg_.png","datePublished":"2022-09-27T19:50:15+00:00","dateModified":"2022-09-27T19:50:23+00:00","breadcrumb":{"@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\/#primaryimage","url":"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2021\/11\/240px-.NET_Logo.svg_.png","contentUrl":"https:\/\/www.naveedulhaq.com\/wp-content\/uploads\/2021\/11\/240px-.NET_Logo.svg_.png","width":240,"height":240,"caption":".net"},{"@type":"BreadcrumbList","@id":"https:\/\/www.naveedulhaq.com\/index.php\/dot-net-core\/resolved-the-specified-type-member-date-is-not-supported-in-linq-to-entities-only-initializers-entity-members-and-entity-navigation-properties-are-supported\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.naveedulhaq.com\/"},{"@type":"ListItem","position":2,"name":"Resolved: The specified type member &#8216;Date&#8217; is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported."}]},{"@type":"WebSite","@id":"https:\/\/www.naveedulhaq.com\/#website","url":"https:\/\/www.naveedulhaq.com\/","name":"Naveed Ul-Haq's blog","description":"AI, Optimizely, Azure &amp; more","publisher":{"@id":"https:\/\/www.naveedulhaq.com\/#\/schema\/person\/dd6db5980b965fcae41e096d357c65c9"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.naveedulhaq.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Person","Organization"],"@id":"https:\/\/www.naveedulhaq.com\/#\/schema\/person\/dd6db5980b965fcae41e096d357c65c9","name":"Naveed Ul-Haq","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g","caption":"Naveed Ul-Haq"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/362536aba6cc66917d7558cacd015a81c7cdf1a69b9a28c994764847c487b692?s=96&d=mm&r=g"},"description":"I lead engineering delivery teams for digital commerce and digital experience platforms, combining hands-on architecture experience with strong delivery governance. Over 20+ years, I\u2019ve built and led cross\u2011functional teams (engineering, BA, QA) delivering modern cloud solutions on Azure, microservices, APIs and eCommerce\/CMS platforms. My recent focus includes AI-enabled commerce automation: product ingestion and enrichment workflows, content optimisation for SEO and shopping feeds, and agentic tooling to improve marketing and accessibility workflows. I\u2019m passionate about building high-performing teams, establishing quality\/release standards, and delivering measurable outcomes across performance, reliability, and speed of change.","sameAs":["https:\/\/www.naveedulhaq.com","https:\/\/www.linkedin.com\/in\/naveedulhaq\/"]}]}},"_links":{"self":[{"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/posts\/723","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/comments?post=723"}],"version-history":[{"count":0,"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/posts\/723\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/media\/641"}],"wp:attachment":[{"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/media?parent=723"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/categories?post=723"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.naveedulhaq.com\/index.php\/wp-json\/wp\/v2\/tags?post=723"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}