Parcourir la source

Add file license header

master
Savorboard il y a 4 ans
Parent
révision
847899342e
3 fichiers modifiés avec 15 ajouts et 6 suppressions
  1. +5
    -2
      src/DotNetCore.CAP.MySql/IDbConnection.Extensions.cs
  2. +5
    -2
      src/DotNetCore.CAP.PostgreSql/IDbConnection.Extensions.cs
  3. +5
    -2
      src/DotNetCore.CAP.SqlServer/IDbConnection.Extensions.cs

src/DotNetCore.CAP.MySql/IDbConnectionExtensions.cs → src/DotNetCore.CAP.MySql/IDbConnection.Extensions.cs Voir le fichier

@@ -1,10 +1,13 @@
using System;
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

using System;
using System.ComponentModel;
using System.Data;

namespace DotNetCore.CAP.MySql
{
internal static class IDbConnectionExtensions
internal static class DbConnectionExtensions
{
public static int ExecuteNonQuery(this IDbConnection connection, string sql, IDbTransaction transaction = null,
params object[] sqlParams)

src/DotNetCore.CAP.PostgreSql/IDbConnectionExtensions.cs → src/DotNetCore.CAP.PostgreSql/IDbConnection.Extensions.cs Voir le fichier

@@ -1,10 +1,13 @@
using System;
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

using System;
using System.ComponentModel;
using System.Data;

namespace DotNetCore.CAP.PostgreSql
{
internal static class IDbConnectionExtensions
internal static class DbConnectionExtensions
{
public static int ExecuteNonQuery(this IDbConnection connection, string sql, IDbTransaction transaction = null,
params object[] sqlParams)

src/DotNetCore.CAP.SqlServer/IDbConnectionExtensions.cs → src/DotNetCore.CAP.SqlServer/IDbConnection.Extensions.cs Voir le fichier

@@ -1,10 +1,13 @@
using System;
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

using System;
using System.ComponentModel;
using System.Data;

namespace DotNetCore.CAP.SqlServer
{
internal static class IDbConnectionExtensions
internal static class DbConnectionExtensions
{
public static int ExecuteNonQuery(this IDbConnection connection, string sql, IDbTransaction transaction = null,
params object[] sqlParams)

Chargement…
Annuler
Enregistrer