Mercurial > pub > bltoolkit
view UnitTests/Fluent/MockDataBase/MockDbDataParameter.cs @ 8:a34cfdde80d6
removed strong signing
added FrameworkPathOverride for linux builds
author | cin |
---|---|
date | Wed, 29 Nov 2017 12:43:52 +0300 |
parents | f990fcb411a9 |
children |
line wrap: on
line source
using System.Data; namespace BLToolkit.Fluent.Test.MockDataBase { /// <summary> /// IDbDataParameter /// </summary> public class MockDbDataParameter : IDbDataParameter { public DbType DbType { get; set; } public ParameterDirection Direction { get; set; } public bool IsNullable { get { throw new System.NotImplementedException(); } } public string ParameterName { get; set; } public string SourceColumn { get; set; } public DataRowVersion SourceVersion { get; set; } public object Value { get; set; } public byte Precision { get; set; } public byte Scale { get; set; } public int Size { get; set; } } }