< Summary - SonghayCore

Information
Class: Songhay.Models.DataParameterMetadata
Assembly: SonghayCore
File(s): /home/rasx/sourceRoot/SonghayCore/SonghayCore/Models/DataParameterMetadata.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 6
Coverable lines: 6
Total lines: 39
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Method coverage is only available for sponsors.

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_DataRowVersion()100%10%
get_DbType()100%10%
get_ParameterDirection()100%10%
get_ParameterName()100%10%
get_ParameterValue()100%10%
get_SourceColumn()100%10%

File(s)

/home/rasx/sourceRoot/SonghayCore/SonghayCore/Models/DataParameterMetadata.cs

#LineLine coverage
 1using System.Data;
 2
 3namespace Songhay.Models;
 4
 5/// <summary>
 6/// A JSON.net-friendly definition for types implementing <see cref="IDataParameter"/>.
 7/// </summary>
 8public class DataParameterMetadata
 9{
 10    /// <summary>
 11    /// Gets or sets the data row version.
 12    /// </summary>
 013    public DataRowVersion DataRowVersion { get; set; } = DataRowVersion.Default;
 14
 15    /// <summary>
 16    /// Gets or sets the type of the database.
 17    /// </summary>
 018    public DbType DbType { get; set; }
 19
 20    /// <summary>
 21    /// Gets or sets the parameter direction.
 22    /// </summary>
 023    public ParameterDirection ParameterDirection { get; set; } = ParameterDirection.Input;
 24
 25    /// <summary>
 26    /// Gets or sets the name of the parameter.
 27    /// </summary>
 028    public string? ParameterName { get; set; }
 29
 30    /// <summary>
 31    /// Gets or sets the parameter value.
 32    /// </summary>
 033    public object? ParameterValue { get; set; }
 34
 35    /// <summary>
 36    /// Gets or sets the source column.
 37    /// </summary>
 038    public string? SourceColumn { get; set; }
 39}