logo mef-dev
  • Developer's Guide
    • Plugin basics
    • Introduction
    • Platform overview
    • Plugin guides
    • First UI package
    • Package registration
    • First Backend package
    • Portal package creation
    • REST API
    • REST API using
    • Request Formats
  • Documentation
    • UI Kit documentation
    • Telecom BSS
    • Ui Kit Demo
  • Blog
  • Community
Image Image
Show / Hide Table of Contents

Class DB

Inheritance
System.Object
DB
Implements
System.IDisposable
Namespace: Natec.Widecoup
Assembly: Natec.Entities.dll
Syntax
public class DB : Object, IDisposable

Constructors

DB(String)

Declaration
public DB(string connectionString)
Parameters
Type Name Description
System.String connectionString

DB(IApiContext)

Declaration
public DB(IApiContext apiContext)
Parameters
Type Name Description
UCP.Common.Plugin.IApiContext apiContext

Properties

PreSqlCommand

Declaration
public string PreSqlCommand { get; set; }
Property Value
Type Description
System.String

Procedures

Declaration
public DB.ProceduresCollection Procedures { get; }
Property Value
Type Description
DB.ProceduresCollection

SqlExecParameters

Declaration
public SqlExecParameters SqlExecParameters { get; set; }
Property Value
Type Description
Natec.Entities.SqlExecParameters

Tables

Declaration
public DB.TablesCollection Tables { get; }
Property Value
Type Description
DB.TablesCollection

Methods

Dispose()

Declaration
public void Dispose()

Dispose(Boolean)

Declaration
protected virtual void Dispose(bool disposing)
Parameters
Type Name Description
System.Boolean disposing

Finalize()

Declaration
protected override void Finalize()

Query(String, Object)

Declaration
public IEnumerable<dynamic> Query(string queryString, object param = null)
Parameters
Type Name Description
System.String queryString
System.Object param
Returns
Type Description
System.Collections.Generic.IEnumerable<System.Object>

Query<T>(String, Object)

Declaration
public IEnumerable<T> Query<T>(string queryString, object param = null)
    where T : class
Parameters
Type Name Description
System.String queryString
System.Object param
Returns
Type Description
System.Collections.Generic.IEnumerable<T>
Type Parameters
Name Description
T

Implements

System.IDisposable
In This Article
Back to top Generated by DocFX