(SQL) SQL (2014)

New SQL Server project templates for VS2015 (CSSqlFunction.cs)

   1:  using System;
   2:  using System.Data;
   3:  using System.Data.SqlClient;
   4:  using System.Data.SqlTypes;
   5:  using Microsoft.SqlServer.Server;
   6:   
   7:  public partial class UserDefinedFunctions
   8:  {
   9:      [Microsoft.SqlServer.Server.SqlFunction]
  10:      public static SqlString $safeitemname$()
  11:      {
  12:          // $PutYourCodeHereComment$
  13:          return new SqlString (string.Empty);
  14:      }
  15:  }


Comments ( )
Link to this page: //www.vb-net.com/VS2015-SQL-Server-Project-Templates/CSSqlFunction-cs.htm
< THANKS ME>