Repository represents a data table or view.
Default constructor
public Void Repository()
Initializes a new instance of Repository.
public Void Repository(dataService)
Name | Type | Summary |
---|---|---|
dataService | IDataServices | A IDataService object from which the repository is created. |
Type | Summary |
---|---|
ArgumentNullException | Thrown when dataService is null. |
Creates a new instance of Repository.
public Void Repository(schema, name, alias)
Name | Type | Summary |
---|---|---|
schema | String | The schema of the table or view. |
name | String | The name of the table or view. |
alias | String | The alias for to the table or view. |
Creates a new instance of Repository.
public Void Repository(schema, name, alias, sequencename)
Name | Type | Summary |
---|---|---|
schema | String | The schema of the table or view. |
name | String | The name of the table or view. |
alias | String | The alias for to the table or view. |
sequencename | String | A sequence name. |
Gets or sets the alias for the table or view.
public String Alias { get; set; }
Gets or sets the name of the table or view.
public String Name { get; set; }
Gets or sets the schema of the table or view.
public String Schema { get; set; }
Gets or sets the name of a sequence.
public String SequenceName { get; set; }
Checks whether other is equals to this Repository.
public Boolean Equals(other)
true if the objects are equals, otherwise false.
Name | Type | Summary |
---|---|---|
other | Repository | An object to compare. |
Checks whether obj is equals to this Repository.
public Boolean Equals(obj)
true if the objects are equals, otherwise false.
Name | Type | Summary |
---|---|---|
obj | Object | An object to compare. |
Not required implemented to avoid warnings.
public Int32 GetHashCode()
Returns a textual representation of this Repository.
public String ToString()
In this document