I do something similar to this using a interface and generics.
Example
using System.Data.SqlClient;
public interface IParameter<T> where T : IEntity<T>
{
void Populate(SqlParameterCollection parameters, T entity);
}
A class that implements the interface using System.Data; using System.Data.SqlClient;
public class UserParameter : IParameter<User>
{
public void Populate(SqlParameterCollection parameters, User entity)
{
parameters.Add("@ID", SqlDbType.UniqueIdentifier).Value = entity.Id;
parameters.Add("@Name", SqlDbType.NVarChar, 255).Value = entity.Name;
parameters.Add("@EmailAddress", SqlDbType.NVarChar, 255).Value = entity.EmailAddress;
}
}
Then we have the method that performs the update
public void Update<T>(string prefix, IParameter<T> parameters, T entity)
where T : class, IEntity<T>
{
using (var connection = this.Connection())
{
using (var command = new SqlCommand("dbo.{0}_Update".Fmt(prefix)SqlCommand(string.Format("dbo.{0}_Update", prefix), connection))
{
command.CommandType = CommandType.StoredProcedure;
parameters.Populate(command.Parameters, entity);
connection.Open();
command.ExecuteNonQuery();
connection.Close();
}
}
}
I then call this by doing somethind like
Update("Users", new UserParameter(), value);
I also do the same for populating a entity from the reader values.
