ITdoEntity.cs :  » Database » TDO » Tdo » Common » Entities » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Database » TDO 
TDO » Tdo » Common » Entities » ITdoEntity.cs
using System;
using System.Xml;
using System.Xml.Serialization;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Diagnostics;
using System.Runtime;
using System.Runtime.Serialization;
using Tdo;
using Tdo.Common;
using Tdo.Common.Entities;
using Tdo.Common.Entities.Tables;
using Tdo.Common.Entities.Views;
using Tdo.Common.Helper;
using Tdo.Common.TdoSqlExpressionDom;
using Tdo.Common.TdoTypes;

namespace Tdo.Common.Entities{
  /// <summary>
  /// ITdoEntity Interface for all Table and View class type
  /// </summary>
  [CLSCompliant(true)]
  public interface ITdoEntity : IDisposable
  {
    /// <summary>
    /// Get or Set SqlCommand time out (default is 60 seconds)
    /// </summary>
    int CommandTimeOut { get; set; }
    /// <summary>
    /// Always Keeps the last number of records involved in insert,update,delete and stored procedures operations.
    /// </summary>
    int LastAffectedRecords { get; }
        /// <summary>
        /// Get or Set physical Schema Name
        /// </summary>
        string SchemaName { get; set; }
    /// <summary>
        /// Get or Set physical Entity name
    /// </summary>
    string EntityName { get; set; }
        /// <summary>
        /// Get Full physical Entity name ([schema].[name])
        /// </summary>
        string FullEntityName { get; }
    /// <summary>
    /// Get Columns Table Collection
    /// </summary>
    [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")]
    Tdo.Common.TdoTypes.ITdoColumn[] TdoColumns { get; }
    /// <summary>
    /// Get or Set TdoHelper reference to share common resources
    /// </summary>
    Tdo.Common.Helper.ITdoHelper TdoHelper { get; set; }
        /// <summary>
        /// Occurs during Fill operations with errors.
        /// </summary>
        event FillErrorEventHandler FillError;
        /// <summary>
        /// Occurs during Update after a command is executed against the data source. The attempt to update is made, so the event fires. 
        /// </summary>
        event SqlRowUpdatedEventHandler RowUpdated;
        /// <summary>
        /// Occurs during Update after a command is executed against the data source. The attempt to update is made, so the event fires. 
        /// </summary>
        event SqlRowUpdatingEventHandler RowUpdating;
        /// <summary>
        /// Occurs after a command is executed against the data source. 
        /// </summary>
        event StatementCompletedEventHandler StatementCompleted;


  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.