Is there a way to make SSRS expressions in C #

I am working on a SQl Server Report Services project, and some code is required for the generated report. It seems that all expressions should be in VB.NET , and I was wondering if there is a “simple” way to switch this to C # it would be useful.

EDIT:

Well, I decided to move my code to another C # assembly that follows templates like this example.

+3
source share
3 answers

This is VBA (Visual Basic for Applications), not VB.NET, so it is not .NET, it is a built-in scripting language. Therefore, I would expect that there is no way to switch to C #.

+4

, VBScript (): OregonGhost VBA, , VBScript), VB.NET( ). #, , .

+1

The short answer is no. And the language, as described in my MSDN, is not really VB.NET, but Visual Basic

0
source

Source: https://habr.com/ru/post/1710581/


All Articles