C# 클래스 Nettiers.AdventureWorks.Data.SqlClient.SqlVAdditionalContactInfoProviderBase

This class is the base repository for the CRUD operations on the VAdditionalContactInfo objects.
상속: VAdditionalContactInfoProviderBase
파일 보기 프로젝트 열기: netTiers/netTiers

공개 메소드들

메소드 설명
Find ( TransactionManager transactionManager, IFilterParameterCollection parameters, string orderBy, int start, int pageLength, int &count ) : VList

Returns rows from the DataSource that meet the parameter conditions.

Get ( TransactionManager transactionManager, string whereClause, string orderBy, int start, int pageLength, int &count ) : VList

Gets a page of rows from the DataSource.

GetAll ( TransactionManager transactionManager, int start, int pageLength, int &count ) : VList

Gets All rows from the DataSource.

SqlVAdditionalContactInfoProviderBase ( string connectionString, bool useStoredProcedure, string providerInvariantName ) : System

Creates a new SqlVAdditionalContactInfoProviderBase instance. Uses connection string to connect to datasource.

보호된 메소드들

메소드 설명
SqlVAdditionalContactInfoProviderBase ( ) : System

Creates a new SqlVAdditionalContactInfoProviderBase instance. Uses connection string to connect to datasource.

메소드 상세

Find() 공개 메소드

Returns rows from the DataSource that meet the parameter conditions.
public Find ( TransactionManager transactionManager, IFilterParameterCollection parameters, string orderBy, int start, int pageLength, int &count ) : VList
transactionManager TransactionManager object
parameters IFilterParameterCollection A collection of objects.
orderBy string Specifies the sort criteria for the rows in the DataSource (Name ASC; BirthDay DESC, Name ASC);
start int Row number at which to start reading.
pageLength int Number of rows to return.
count int out. The number of rows that match this query.
리턴 VList

Get() 공개 메소드

Gets a page of rows from the DataSource.
public Get ( TransactionManager transactionManager, string whereClause, string orderBy, int start, int pageLength, int &count ) : VList
transactionManager TransactionManager object
whereClause string Specifies the condition for the rows returned by a query (Name='John Doe', Name='John Doe' AND Id='1', Name='John Doe' OR Id='1').
orderBy string Specifies the sort criteria for the rows in the DataSource (Name ASC; BirthDay DESC, Name ASC);
start int Row number at which to start reading.
pageLength int Number of rows to return.
count int The total number of rows in the data source.
리턴 VList

GetAll() 공개 메소드

Gets All rows from the DataSource.
public GetAll ( TransactionManager transactionManager, int start, int pageLength, int &count ) : VList
transactionManager TransactionManager object.
start int Row number at which to start reading.
pageLength int Number of rows to return.
count int The total number of rows in the data source.
리턴 VList

SqlVAdditionalContactInfoProviderBase() 보호된 메소드

Creates a new SqlVAdditionalContactInfoProviderBase instance. Uses connection string to connect to datasource.
protected SqlVAdditionalContactInfoProviderBase ( ) : System
리턴 System

SqlVAdditionalContactInfoProviderBase() 공개 메소드

Creates a new SqlVAdditionalContactInfoProviderBase instance. Uses connection string to connect to datasource.
public SqlVAdditionalContactInfoProviderBase ( string connectionString, bool useStoredProcedure, string providerInvariantName ) : System
connectionString string The connection string to the database.
useStoredProcedure bool A boolean value that indicates if we use stored procedures or embedded queries.
providerInvariantName string Name of the invariant provider use by the DbProviderFactory.
리턴 System