DataAccessApplicationBlock.zip
Microsoft Patterns & Practices 팀 사이트에 가보니 어느새 ‘Data Access Application Block for .NET v2.0’이 나와 있었습니다. v1.0의 기능을 확장한 것으로, v1.0을 v2.0으로 그냥 교체해주시면 됩니다.
v1.0과 비교해서 다음과 같은 기능들이 추가됐습니다.
• ExecuteNonQueryTypedParams. This method executes a non-query operation using a data row instead of parameters.
• ExecuteDatasetTypedParams. This method executes a DataSet creation operation, using a data row instead of parameters.
• ExecuteReaderTypedParams. This method returns a data reader using a data row instead of parameters.
• ExecuteScalarTypedParams. This method returns a scalar using a data row instead of parameters.
• ExecuteXmlReaderTypedParams. This method executes an XmlReader using a data row instead of parameters.
• ExecuteNonQueryTypedParams. This method executes a non-query operation using a data row instead of parameters.
• ExecuteDatasetTypedParams. This method executes a DataSet creation operation, using a data row instead of parameters.
• ExecuteReaderTypedParams. This method returns a data reader using a data row instead of parameters.
• ExecuteScalarTypedParams. This method returns a scalar using a data row instead of parameters.
• ExecuteXmlReaderTypedParams.This method executes an XmlReader using a data row instead of parameters.
자세한 사항은 ‘Patterns & Practices’ 사이트에 가셔서 확인해보시기 바랍니다.
또는 첨부된 파일을 실행시켜서 v2.0을 설치한 후, 샘플을 보시면 됩니다.