We are having a dataaccess layer and it is having one interface with a function with untyped dataset. when we are passing typed dataset from entity
layer to dataaccess layer we are getting an error. please help to resolve the error.
CODE:
===============
public interface diNonTransactional
{
int ExecuteDataAdapterDataTableWithParams(IDbCommand podbCommand, ref DataTable pdtDataTable);
}
CODE:
===============
public interface diNonTransactional
{
int ExecuteDataAdapterDataTableWithParams(IDbCommand podbCommand, ref DataTable pdtDataTable);
}