What is the SQL Server CLR Integration Life Cycle?

前端 未结 5 778
[愿得一人]
[愿得一人] 2020-12-31 20:38

How are CLR (.NET) objects managed in SQL Server?

The entry point to any CLR code from SQL Server is a static method. Typically you\'ll only create objects that exi

5条回答
  •  北海茫月
    2020-12-31 21:04

    Here's some info that I've found.

    Troubles with shared state and anonymous delegates in SQLCLR

    Not only is shared state not allowed in a non-UNSAFE assembly, but anonymous delegates (unfortunately) trigger this "shared state" restriction.

提交回复
热议问题