Skip to content

Commit

Permalink
feat: parametrs for ParametrAttribute
Browse files Browse the repository at this point in the history
  • Loading branch information
Vyacheslav committed Feb 20, 2023
1 parent 202805f commit 2fd032a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Src/Gedaq.DbConnection/Attributes/ParametrAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ public ParametrAttribute(
DbType dbType = DbType.Object,
int size = -1,
bool nullable = false,
ParameterDirection direction = ParameterDirection.Input
ParameterDirection direction = ParameterDirection.Input,
string sourceColumn = "",
bool sourceColumnNullMapping = false,
DataRowVersion sourceVersion = DataRowVersion.Current,
byte scale = 0,
byte precision = 0
)
{
}
Expand Down
2 changes: 1 addition & 1 deletion Src/Gedaq.DbConnection/Gedaq.DbConnection.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</ItemGroup>
<PropertyGroup>
<PackageId>Gedaq.DbConnection</PackageId>
<PackageVersion>0.2.1.0</PackageVersion>
<PackageVersion>0.2.2.0</PackageVersion>
<Authors>Brevnov Vyacheslav Sergeevich</Authors>
<RepositoryUrl>https://github.com/SoftStoneDevelop/Gedaq.DbConnection</RepositoryUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
Expand Down

0 comments on commit 2fd032a

Please sign in to comment.