Mercurial > pub > bltoolkit
view UnitTests/Fluent/MockDataBase/MockDbDataParameter.cs @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +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; } } }