{"id":985,"date":"2004-12-05T22:16:00","date_gmt":"2004-12-05T22:16:00","guid":{"rendered":"\/blogs\/bobb\/post\/Using-inheritence-in-SQLCLR-UDTs.aspx"},"modified":"2004-12-05T22:16:00","modified_gmt":"2004-12-05T22:16:00","slug":"using-inheritence-in-sqlclr-udts","status":"publish","type":"post","link":"https:\/\/www.sqlskills.com\/blogs\/bobb\/using-inheritence-in-sqlclr-udts\/","title":{"rendered":"Using inheritence in SQLCLR UDTs"},"content":{"rendered":"<p>\nI answered a question on the newsgroups on how *exactly* inheritence works when you use it implement UDTs in SQL Server 2005. Also wanted to record the explanation here&#8230;.\n<\/p>\n<p>\nIt doesn&#39;t work like you&#39;d expect inheritence to when to use T-SQL, because SQL Server is blissfully unaware of the inheritence relationships (they&#39;re not recorded in the system views).\n<\/p>\n<p>\nSo if the class Tiger inherits from the class Cat. Passing an instance of Tiger to the T-SQL stored procedure FeedTheCat:<br \/>\ncreate procedure FeedTheCat (@thecat Cat) &#8230;. &#8212; T-SQL here &#8212; <br \/>\nwouldn&#39;t work.\n<\/p>\n<p>\n&#8212; (Msg 206: operand type clash dbo.Tiger is incompatible with dbo.Cat)<br \/>\ndeclare @t tiger<br \/>\nexecute feedthecat @t\n<\/p>\n<p>\n&#8212; or this (Msg 529: explicit conversion &#8230; is not allowed)<br \/>\ndeclare @c cat<br \/>\nset @c = cast(@t as cat)<br \/>\nexecute feedthecat @c\n<\/p>\n<p>\nIf the Cat class has a public instance method called FeedMe and a public field called pawcount (both are inherited by Tiger), this wouldn&#39;t work in T-SQL:\n<\/p>\n<p>\n&#8212; this wouldn&#39;t work<br \/>\ndeclare @t Tiger<br \/>\nprint @t.FeedMe()<br \/>\nprint @t.pawcount\n<\/p>\n<p>\n&#8212; this would<br \/>\ndeclare @c Cat<br \/>\nprint @c.FeedMe()<br \/>\nprint @c.pawcount\n<\/p>\n<p>\nYou could, however, access these fields\/methods on Tiger from .NET code, As in:<br \/>\n\/\/ works fine<br \/>\nTiger t = new Tiger();<br \/>\nint paws = t.pawcount;<br \/>\n\/\/ so does this<br \/>\nSqlString s = t.FeedMe();\n<\/p>\n<p>\nCalling it in .NET code *through SqlCommand.ExecuteReader* (CommandText = &quot;select sometiger.pawcount from zootab&quot;) wouldn&#39;t work.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I answered a question on the newsgroups on how *exactly* inheritence works when you use it implement UDTs in SQL Server 2005. Also wanted to record the explanation here&#8230;. It doesn&#39;t work like you&#39;d expect inheritence to when to use T-SQL, because SQL Server is blissfully unaware of the inheritence relationships (they&#39;re not recorded in [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[28,38],"tags":[],"class_list":["post-985","post","type-post","status-publish","format-standard","hentry","category-sql-server-2005","category-sqlclr"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.9.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Using inheritence in SQLCLR UDTs - Bob Beauchemin<\/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.sqlskills.com\/blogs\/bobb\/using-inheritence-in-sqlclr-udts\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using inheritence in SQLCLR UDTs - Bob Beauchemin\" \/>\n<meta property=\"og:description\" content=\"I answered a question on the newsgroups on how *exactly* inheritence works when you use it implement UDTs in SQL Server 2005. Also wanted to record the explanation here&#8230;. It doesn&#039;t work like you&#039;d expect inheritence to when to use T-SQL, because SQL Server is blissfully unaware of the inheritence relationships (they&#039;re not recorded in [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqlskills.com\/blogs\/bobb\/using-inheritence-in-sqlclr-udts\/\" \/>\n<meta property=\"og:site_name\" content=\"Bob Beauchemin\" \/>\n<meta property=\"article:published_time\" content=\"2004-12-05T22:16:00+00:00\" \/>\n<meta name=\"author\" content=\"Bob Beauchemin\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Bob Beauchemin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. 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\":\"WebPage\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/using-inheritence-in-sqlclr-udts\/\",\"url\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/using-inheritence-in-sqlclr-udts\/\",\"name\":\"Using inheritence in SQLCLR UDTs - Bob Beauchemin\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/#website\"},\"datePublished\":\"2004-12-05T22:16:00+00:00\",\"dateModified\":\"2004-12-05T22:16:00+00:00\",\"author\":{\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/#\/schema\/person\/62bfa986c5b5d28fcffd8b4fc409c73e\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/using-inheritence-in-sqlclr-udts\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sqlskills.com\/blogs\/bobb\/using-inheritence-in-sqlclr-udts\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/using-inheritence-in-sqlclr-udts\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server 2005\",\"item\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/category\/sql-server-2005\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Using inheritence in SQLCLR UDTs\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/#website\",\"url\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/\",\"name\":\"Bob Beauchemin\",\"description\":\"SQL Server Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/#\/schema\/person\/62bfa986c5b5d28fcffd8b4fc409c73e\",\"name\":\"Bob Beauchemin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6f80e6cc667410857fa6a21931dc528b8092f4d112bf7a8ff7c267674d44ee37?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6f80e6cc667410857fa6a21931dc528b8092f4d112bf7a8ff7c267674d44ee37?s=96&d=mm&r=g\",\"caption\":\"Bob Beauchemin\"},\"sameAs\":[\"http:\/www.sqlskills.com\/blogs\/bobb\/\"],\"url\":\"https:\/\/www.sqlskills.com\/blogs\/bobb\/author\/bobb\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Using inheritence in SQLCLR UDTs - Bob Beauchemin","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.sqlskills.com\/blogs\/bobb\/using-inheritence-in-sqlclr-udts\/","og_locale":"en_US","og_type":"article","og_title":"Using inheritence in SQLCLR UDTs - Bob Beauchemin","og_description":"I answered a question on the newsgroups on how *exactly* inheritence works when you use it implement UDTs in SQL Server 2005. Also wanted to record the explanation here&#8230;. It doesn&#39;t work like you&#39;d expect inheritence to when to use T-SQL, because SQL Server is blissfully unaware of the inheritence relationships (they&#39;re not recorded in [&hellip;]","og_url":"https:\/\/www.sqlskills.com\/blogs\/bobb\/using-inheritence-in-sqlclr-udts\/","og_site_name":"Bob Beauchemin","article_published_time":"2004-12-05T22:16:00+00:00","author":"Bob Beauchemin","twitter_misc":{"Written by":"Bob Beauchemin","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.sqlskills.com\/blogs\/bobb\/using-inheritence-in-sqlclr-udts\/","url":"https:\/\/www.sqlskills.com\/blogs\/bobb\/using-inheritence-in-sqlclr-udts\/","name":"Using inheritence in SQLCLR UDTs - Bob Beauchemin","isPartOf":{"@id":"https:\/\/www.sqlskills.com\/blogs\/bobb\/#website"},"datePublished":"2004-12-05T22:16:00+00:00","dateModified":"2004-12-05T22:16:00+00:00","author":{"@id":"https:\/\/www.sqlskills.com\/blogs\/bobb\/#\/schema\/person\/62bfa986c5b5d28fcffd8b4fc409c73e"},"breadcrumb":{"@id":"https:\/\/www.sqlskills.com\/blogs\/bobb\/using-inheritence-in-sqlclr-udts\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqlskills.com\/blogs\/bobb\/using-inheritence-in-sqlclr-udts\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqlskills.com\/blogs\/bobb\/using-inheritence-in-sqlclr-udts\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqlskills.com\/blogs\/bobb\/"},{"@type":"ListItem","position":2,"name":"SQL Server 2005","item":"https:\/\/www.sqlskills.com\/blogs\/bobb\/category\/sql-server-2005\/"},{"@type":"ListItem","position":3,"name":"Using inheritence in SQLCLR UDTs"}]},{"@type":"WebSite","@id":"https:\/\/www.sqlskills.com\/blogs\/bobb\/#website","url":"https:\/\/www.sqlskills.com\/blogs\/bobb\/","name":"Bob Beauchemin","description":"SQL Server Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqlskills.com\/blogs\/bobb\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.sqlskills.com\/blogs\/bobb\/#\/schema\/person\/62bfa986c5b5d28fcffd8b4fc409c73e","name":"Bob Beauchemin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqlskills.com\/blogs\/bobb\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6f80e6cc667410857fa6a21931dc528b8092f4d112bf7a8ff7c267674d44ee37?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6f80e6cc667410857fa6a21931dc528b8092f4d112bf7a8ff7c267674d44ee37?s=96&d=mm&r=g","caption":"Bob Beauchemin"},"sameAs":["http:\/www.sqlskills.com\/blogs\/bobb\/"],"url":"https:\/\/www.sqlskills.com\/blogs\/bobb\/author\/bobb\/"}]}},"_links":{"self":[{"href":"https:\/\/www.sqlskills.com\/blogs\/bobb\/wp-json\/wp\/v2\/posts\/985","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqlskills.com\/blogs\/bobb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sqlskills.com\/blogs\/bobb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/bobb\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/bobb\/wp-json\/wp\/v2\/comments?post=985"}],"version-history":[{"count":0,"href":"https:\/\/www.sqlskills.com\/blogs\/bobb\/wp-json\/wp\/v2\/posts\/985\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.sqlskills.com\/blogs\/bobb\/wp-json\/wp\/v2\/media?parent=985"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/bobb\/wp-json\/wp\/v2\/categories?post=985"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/bobb\/wp-json\/wp\/v2\/tags?post=985"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}