Gentle中的数据表实体类相关自定义属性的设置和获得

1.自定义 表名属性 TableNameAttribute
2.自定义 主键属性 PrimaryKeyAttribute
3.自定义 列名属性 TableColumnAttribute
4.数据表person对应的实体类person.cs
5.获得person.cs类型实体 对应的表名及字段名

=========================================
下面的属性代码文件 都直接建立在App_Code下 以方便使用

1.自定义 表名属性 TableNameAttribute
------------------------------------

ContractedBlock.gifExpandedBlockStart.gif
None.gifusing System;
None.gif
ExpandedBlockStart.gifContractedBlock.gif
/**//// <summary>
InBlock.gif
/// TableNameAttribute 的摘要说明
ExpandedBlockEnd.gif
/// </summary>

None.gif
None.gif[AttributeUsage( AttributeTargets.Class, AllowMultiple
=false, Inherited=true )]
None.gif
public sealed class TableNameAttribute : Attribute
ExpandedBlockStart.gifContractedBlock.gif
dot.gif{
InBlock.gif    
private string name;
InBlock.gif    
private string schema;
InBlock.gif    
//private CacheStrategy cacheStrategy = GentleSettings.DefaultCacheStrategy;
InBlock.gif

ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// The constructor for the TableName attribute.
InBlock.gif    
/// </summary>
ExpandedSubBlockEnd.gif    
/// <param name="name">The name of the database table used to store instances of this class.</param>

InBlock.gif    public TableNameAttribute( string name )
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        
this.name = name;
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// The constructor for the TableName attribute.
InBlock.gif    
/// </summary>
InBlock.gif    
/// <param name="name">The name of the database table used to store instances of this class.</param>
InBlock.gif    
/// <param name="strategy">The cache stratgey to use for instances of this type. <see 
ExpandedSubBlockEnd.gif
    /// cref="CacheStrategy"/> for a list of available options.</param>

InBlock.gif    //public TableNameAttribute( string name, CacheStrategy strategy )
InBlock.gif    
//{
InBlock.gif    
//    this.name = name;
InBlock.gif    
//    this.cacheStrategy = strategy;
InBlock.gif    
//}
InBlock.gif

ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// The name of the database table used to store instances of this class.
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    public string Name
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
get dot.gifreturn name; }
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// The optional schema name with which to prefix the table name in queries.
InBlock.gif    
/// This value overrides the default schema definition (if present) in the
InBlock.gif    
/// configuration file. Note: this property is currently unused. 
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    public string Schema
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
get dot.gifreturn schema; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
set dot.gif{ schema = value; }
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**////// <summary>
InBlock.gif    
///// The cache behavior for objects of this type. <see cref="CacheStrategy"/> 
InBlock.gif    
///// for a list of available options.
ExpandedSubBlockEnd.gif    
///// </summary>

InBlock.gif    //public CacheStrategy CacheStrategy
InBlock.gif    
//{
InBlock.gif    
//    get { return cacheStrategy; }
InBlock.gif    
//    set { cacheStrategy = value; }
InBlock.gif    
//}
ExpandedBlockEnd.gif
}

None.gif

2.自定义 主键属性 PrimaryKeyAttribute
------------------------------------
ContractedBlock.gifExpandedBlockStart.gif
None.gifusing System;
None.gif
ExpandedBlockStart.gifContractedBlock.gif
/**//// <summary>
InBlock.gif
/// PrimaryKeyAttribute 的摘要说明
ExpandedBlockEnd.gif
/// </summary>

None.gif[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = true, Inherited = true)]
None.gif
public sealed class PrimaryKeyAttribute : Attribute
ExpandedBlockStart.gifContractedBlock.gif
dot.gif{
InBlock.gif    
private bool autoGenerated = false;
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// Set this property to true for primary keys that are automatically assigned
InBlock.gif    
/// by the database on insert (identity columns in SQL server terminology). 
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    public bool AutoGenerated
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
get dot.gifreturn autoGenerated; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
set dot.gif{ autoGenerated = value; }
ExpandedSubBlockEnd.gif    }

ExpandedBlockEnd.gif}

None.gif

3.自定义 列名属性 TableColumnAttribute
--------------------------------------
ContractedBlock.gifExpandedBlockStart.gif
None.gifusing System;
None.gif
using System.Data;
None.gif
ExpandedBlockStart.gifContractedBlock.gif
/**//// <summary>
InBlock.gif
/// TableColumnAttribute 的摘要说明
ExpandedBlockEnd.gif
/// </summary>

None.gif[AttributeUsage( AttributeTargets.Property | AttributeTargets.Field, AllowMultiple=false, Inherited=true )]
None.gif
public class TableColumnAttribute : Attribute
ExpandedBlockStart.gifContractedBlock.gif
dot.gif{
InBlock.gif    
private string name;
InBlock.gif    
private bool notNull;
InBlock.gif    
private int size;
InBlock.gif    
private bool hasDbType = false// true when DbType property has been set
InBlock.gif
    private long dbType;
InBlock.gif    
private object nullValue = null;
InBlock.gif    
private bool handleEnumAsString = false;
InBlock.gif    
private bool isReadOnly = false;
InBlock.gif    
private bool isUpdateAfterWrite = false;
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// Constructor for table columns that are named after their property counterpart
InBlock.gif    
/// and whose value cannot be null.
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    public TableColumnAttribute()
InBlock.gif        : 
this(nulltrue)
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// Constructor for table columns that are named after their property counterpart.
InBlock.gif    
/// </summary>
ExpandedSubBlockEnd.gif    
/// <param name="notNull">A boolean telling whether null values are allowed in the database</param>

InBlock.gif    public TableColumnAttribute(bool notNull)
InBlock.gif        : 
this(null, notNull)
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// Constructor for table columns whose value cannot be null.
InBlock.gif    
/// </summary>
ExpandedSubBlockEnd.gif    
/// <param name="name">The name of the database column</param>

InBlock.gif    public TableColumnAttribute(string name)
InBlock.gif        : 
this(name, true)
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// Constructor for table columns.
InBlock.gif    
/// </summary>
InBlock.gif    
/// <param name="name">The name of the database column</param>
ExpandedSubBlockEnd.gif    
/// <param name="notNull">A boolean telling whether null values are allowed in the database</param>

InBlock.gif    public TableColumnAttribute(string name, bool notNull)
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        
this.name = name;
InBlock.gif        
this.notNull = notNull;
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// The name of the database column for storing the property decorated with this attribute.
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    public string Name
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
get dot.gifreturn name; }
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// This property (defaults to true) can be used to specify whether NULL values are
InBlock.gif    
/// allowed in the database. This allows the framework to fail early if a constraint
InBlock.gif    
/// is violated.
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    public bool NotNull
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
get dot.gifreturn notNull; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
set dot.gif{ notNull = value; }
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// The database type of the field in the database. Beware that the DbType enumeration
InBlock.gif    
/// values are NOT the ones used by the individual providers. Gentle does NOT convert
InBlock.gif    
/// the DbType to a "best match" for the provider. It is therefore recommended that 
InBlock.gif    
/// you use the DatabaseType below until a better type definition system is available.
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    [Obsolete("Please use DatabaseType instead.")]
InBlock.gif    
public DbType DbType
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
get dot.gifreturn (DbType)dbType; }
InBlock.gif        
set
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            hasDbType 
= true;
InBlock.gif            dbType 
= (long)value;
ExpandedSubBlockEnd.gif        }

ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// The database type of the field in the database. Convert the actual database type
InBlock.gif    
/// enumeration to a long by casting it in the declaration.
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    public long DatabaseType
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
get dot.gifreturn dbType; }
InBlock.gif        
set
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            hasDbType 
= true;
InBlock.gif            dbType 
= value;
ExpandedSubBlockEnd.gif        }

ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// The size or length of the field in the database. String properties will be clipped
InBlock.gif    
/// to fit.
InBlock.gif    
/// This feature will obsoleted once Gentle is capable of extracting type and size 
InBlock.gif    
/// information directly from the database. If specified, the values must match
InBlock.gif    
/// those extracted from the database (when implemented).
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    public int Size
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
get dot.gifreturn size; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
set dot.gif{ size = value; }
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// This property indicates whether a DbType was specified. This construct is necessary
InBlock.gif    
/// because the DbType enum has no value for undefined.
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    public bool HasDbType
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
get dot.gifreturn hasDbType; }
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// Obsolete, use NullValue instead.
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    [Obsolete("Use NullValue instead.")]
InBlock.gif    
public object MagicValue
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
get dot.gifreturn nullValue; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
set dot.gif{ nullValue = value; }
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// This value of this property is used when a column is NotNull and the property value
InBlock.gif    
/// is null.  If this is undefined the framework will throw an error for NotNull columns
InBlock.gif    
/// whose values are null.
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    public object NullValue
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
get dot.gifreturn nullValue; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
set dot.gif{ nullValue = value; }
ExpandedSubBlockEnd.gif    }

InBlock.gif
ContractedSubBlock.gifExpandedSubBlockStart.gif    
NullValue Helper Properties for VB.NET Users#region NullValue Helper Properties for VB.NET Users
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// This property allows type-safe setting of the NullValue for VB users.
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    public int NullValue_int
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
set dot.gif{ NullValue = value; }
ExpandedSubBlockEnd.gif    }

ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// This property allows type-safe setting of the NullValue for VB users.
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    public NullOption NullValue_opt
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
set dot.gif{ NullValue = value; }
ExpandedSubBlockEnd.gif    }

ExpandedSubBlockEnd.gif    
#endregion

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// This value indicates that the column should not be set on insert and update. It is
InBlock.gif    
/// primarily useful for columns that are set internally by the database.
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    public bool IsReadOnly
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
get dot.gifreturn isReadOnly; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
set dot.gif{ isReadOnly = value; }
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// This value indicates that the column must be read after each insert and update. It is
InBlock.gif    
/// primarily useful for columns that are set internally by the database. Note that using
InBlock.gif    
/// this feature (by setting this to true for any column) will significantly impact 
InBlock.gif    
/// performance for the worse, as for every update/insert another select will be 
InBlock.gif    
/// performed. Also, fields will be updated using reflection after select, which is also
InBlock.gif    
/// quite slow (depending on the number of columns).
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    public bool IsUpdateAfterWrite
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
get dot.gifreturn isUpdateAfterWrite; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
set dot.gif{ isUpdateAfterWrite = value; }
ExpandedSubBlockEnd.gif    }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// If member which has this attribute attached is enum then this property
InBlock.gif    
/// indicates wheter framework saves it as string or as integer.
InBlock.gif    
/// Default is false, ie enums are saved as integers
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    public bool HandleEnumAsString
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
get dot.gifreturn handleEnumAsString; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
set dot.gif{ handleEnumAsString = value; }
ExpandedSubBlockEnd.gif    }

ExpandedBlockEnd.gif}

None.gif
None.gif
public enum NullOption
ExpandedBlockStart.gifContractedBlock.gif
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// &lt;type&gt;.MinValue will be stored as NULL, and NULL will be read as &lt;type&gt;.MinValue.
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    MinValue,
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// &lt;type&gt;.MaxValue will be stored as NULL, and NULL will be read as &lt;type&gt;.MaxValue.
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    MaxValue,
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// 0 (or the equivalent for other numeric types) will be stored as NULL, and NULL will be read as 0.
ExpandedSubBlockEnd.gif    
/// </summary> This value can only be used with numeric types (such as decimal).

InBlock.gif    Zero,
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// Guid.Empty will be stored as NULL, and NULL will be read as Guid.Empty. This value can only be
InBlock.gif    
/// used with Guid fields.
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    EmptyGuid
ExpandedBlockEnd.gif}

4.数据表person对应的实体类person.cs
------------------------------------
ContractedBlock.gifExpandedBlockStart.gif
None.gifusing System;
None.gif
using System.Data;
None.gif
using System.Configuration;
None.gif
using System.Web;
None.gif
using System.Web.Security;
None.gif
using System.Web.UI;
None.gif
using System.Web.UI.WebControls;
None.gif
using System.Web.UI.WebControls.WebParts;
None.gif
using System.Web.UI.HtmlControls;
None.gif
ExpandedBlockStart.gifContractedBlock.gif
/**//// <summary>
InBlock.gif
/// person 的摘要说明
ExpandedBlockEnd.gif
/// </summary>

None.gif
None.gif[TableName(
"person")]
None.gif
public class person
ExpandedBlockStart.gifContractedBlock.gif
dot.gif{
InBlock.gif    
public person()
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockEnd.gif    }

InBlock.gif
InBlock.gif    
//[TableColumn("personID", NotNull = true), PrimaryKey]
InBlock.gif
    protected int _personID;
InBlock.gif    
//[TableColumn("personName", NotNull = true)]
InBlock.gif
    protected string _personName = String.Empty;
InBlock.gif
InBlock.gif    [TableColumn(
"personID", NotNull = true), PrimaryKey]
InBlock.gif    
public int PersonID
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
get dot.gifreturn _personID; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
set dot.gif{ _personID = value; }
ExpandedSubBlockEnd.gif    }

InBlock.gif
InBlock.gif    [TableColumn(
"personName", NotNull = true)]
InBlock.gif    
public string PersonName
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
get dot.gifreturn _personName; }
ExpandedSubBlockStart.gifContractedSubBlock.gif        
set dot.gif{ _personName = value; }
ExpandedSubBlockEnd.gif    }

ExpandedBlockEnd.gif}

None.gif

5.获得person.cs类型实体 对应的表名及字段名
------------------------------------------
ContractedBlock.gifExpandedBlockStart.gif
None.gifprotected void Button1_Click(object sender, EventArgs e)
ExpandedBlockStart.gifContractedBlock.gif
dot.gif{
InBlock.gif    person aPerson 
= new person();
InBlock.gif    aPerson.PersonID 
= 22;
InBlock.gif    aPerson.PersonName 
= "zhangsan";
InBlock.gif
InBlock.gif    Type aType 
= aPerson.GetType();
InBlock.gif
InBlock.gif    
//类实体公开属性对应的列名属性
InBlock.gif
    PropertyInfo[] aPropertyInfos = aType.GetProperties();
InBlock.gif    
string strPublicProperty = " ";
InBlock.gif    
for (int i = 0; i < aPropertyInfos.Length; i++)
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        PropertyInfo aPropertyInfo 
= (PropertyInfo)aPropertyInfos[i];
InBlock.gif        strPublicProperty 
+= i.ToString() + " : 实体属性名 " + aPropertyInfo.Name;
InBlock.gif        strPublicProperty 
+= " 对应值 " + aPropertyInfo.GetValue(aPerson, null).ToString() + " ";
InBlock.gif        
object[] attrs = aPropertyInfo.GetCustomAttributes(typeof(TableColumnAttribute), true);
InBlock.gif        
for (int m = 0; m < attrs.Length; m++)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            strPublicProperty 
+= " 对应列名 " + ((TableColumnAttribute)attrs[m]).Name;
ExpandedSubBlockEnd.gif        }

ExpandedSubBlockEnd.gif    }

InBlock.gif    
this.TextBox1.Text = strPublicProperty;
InBlock.gif
InBlock.gif
InBlock.gif    
//FieldInfo[] aFieldInfos = aType.GetFields();
InBlock.gif    
//string strPublicField = " ";
InBlock.gif    
//for (int j = 0; j < aFieldInfos.Length; j++)
InBlock.gif    
//{
InBlock.gif    
//    FieldInfo aFieldInfo = (FieldInfo)aFieldInfos[j];
InBlock.gif    
//    strPublicField += j.ToString() + " : " + aFieldInfo.Name + " ";
InBlock.gif    
//}
InBlock.gif    
//this.TextBox2.Text = strPublicField;
InBlock.gif    
InBlock.gif
InBlock.gif    
//类实体对应的表名属性
InBlock.gif
    string strTablePKName = " ";
InBlock.gif    
object[] attrsAA = aType.GetCustomAttributes(typeof(TableNameAttribute), true);
InBlock.gif    
for (int n = 0; n < attrsAA.Length; n++)
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        strTablePKName 
+= " " + ((TableNameAttribute)attrsAA[n]).Name;
ExpandedSubBlockEnd.gif    }

InBlock.gif
InBlock.gif    
//类实体对应的主键属性
InBlock.gif
    MemberInfo[] aMemberInfos = aType.GetMembers(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
InBlock.gif    
string strMemberInfo = " ";
InBlock.gif    
for (int k = 0; k < aMemberInfos.Length; k++)
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        MemberInfo aM 
= aMemberInfos[k];
InBlock.gif        
object[] attrs = aM.GetCustomAttributes(typeof(PrimaryKeyAttribute), true);
InBlock.gif        
for (int m = 0; m < attrs.Length; m++)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            strTablePKName 
+= " 主键 " + aM.Name;
ExpandedSubBlockEnd.gif        }

ExpandedSubBlockEnd.gif    }

InBlock.gif
InBlock.gif    
this.TextBox2.Text = strTablePKName;
InBlock.gif   
ExpandedBlockEnd.gif}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/467011.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

蛇形填数 递归

蛇形填数 描述在n*n方陈里填入1,2,...,n*n,要求填成蛇形。例如n4时方陈为&#xff1a;输入直接输入方陈的维数&#xff0c;即n的值。(n<100)输出输出结果是蛇形方陈。样例输入3 样例输出 1 8 7 2 9 6 3 4 5 #include<iostream> using namespace std; #define N…

WebSocket介绍

WebSocket协议是基于TCP的一种新的协议。WebSocket最初在HTML5规范中被引用为TCP连接&#xff0c;作为基于TCP的套接字API的占位符。它实现了浏览器与服务器全双工(full-duplex)通信。其本质是保持TCP连接&#xff0c;在浏览器和服务端通过Socket进行通信。 本文将使用Python编…

干,认识Audio框架还因此发现一个雷

我们最近出了一个问题&#xff0c;我们点击播放音乐&#xff0c;然后再点击停止播放的时候&#xff0c;喇叭还会输出一段杂音后喇叭才会停止输出。经过排查发现&#xff0c;在代码里面就做了这个功能代码在AudioFlinger.h 里frameworks/av/services/audioflinger/AudioFlinger.…

画图板-- 中点算法画圆

为了能以任意点为圆心画圆&#xff0c;我们可以把圆心先设为视点&#xff08;相当于于将其平移到坐标原点&#xff09;&#xff0c;然后通过中点法扫描转换后&#xff0c;再恢复原来的视点&#xff08;相当于将圆心平移回原来的位置&#xff09;。圆心位于原点的圆有四条对称轴…

插入排序法

插入排序法 宗旨&#xff1a;技术的学习是有限的&#xff0c;分享的精神是无限的。 构思&#xff1a; 1.读入欲排序的数值 2.使用插入排序法 &#xff08;1&#xff09;依序将数值插入 &#xff08;2&#xff09;插入前和已排好好序的每一个数值比较 &#xff08;3&#…

Linux 内核如何描述一个进程?

哈喽&#xff0c;我是吴同学&#xff0c;继续记录我的学习心得。一、关于写文章许多知识&#xff0c;书上或者网络上都有&#xff0c;就算这两个地方都没有&#xff0c;代码里也会有答案。但有时恰恰是 资料太多&#xff0c;反而让人难以检索出有用的信息。面对同样的资料&…

供应商关系管理SRM为企业的节流增贡献

在供应链下游的需求链上&#xff0c;企业为了增加市场份额、提高销售收入&#xff0c;更为重视面向客户的管理和信息化管理方面的投入&#xff0c;纷纷引入客户关系管理CRM的管理理念和信息化系统&#xff0c;在“客户第一”的经营策略下借助IT技术的手段来提高对客户的服务水平…

C小项目——电子词典

C语言项目——查字典 宗旨&#xff1a;技术的学习是有限的&#xff0c;分享的精神是无限的。 【项目需求描述】 一、单词查询 给定文本文件“dict.txt”&#xff0c;该文件用于存储词库。词库为“英-汉”&#xff0c;“汉-英”双语词典&#xff0c;每个单词和其解释的格式固…

线性表的顺序存储的基本操作

插入&#xff1a; #include<stdio.h> #define N 100 typedef struct s {int elem[N];int last; }Seqlist; int Locate(Seqlist l,int e)//查找 {int i0;while(i<l.last&&l.elem[i]!e)i;if(i<l.last)return i1;elsereturn 0; } int DelList(Seqlist *l,int …

canvas生成二维码(2)

不同的插件实现相同的效果&#xff0c;用起来更简洁一些&#xff0c;引用插件qrcode.js 创建一个新的QRCode对象&#xff0c;利用动漫节点和data数据进行复制&#xff0c;实现生成图片img的二维码&#xff1a; 详细见下方代码&#xff1a; <!DOCTYPE html PUBLIC "-//W…

UART/I2C/SPI/1-wire四大通信接口的神解释

1、 裘千丈轻功水上漂之UART射雕英雄传中的裘千丈说&#xff0c;UART就是我的轻功水上漂过河。想从河上过&#xff08;通信&#xff09;&#xff0c;提前布暗桩&#xff0c;行走时步伐按桩距固定&#xff08;波特率提前确定&#xff09;&#xff0c;步幅太大或太小都会落水。为…

动漫迷看的一点动漫

个人看过的动漫 (注&#xff1a;排名不分先后) 宗旨&#xff1a;技术的学习是有限的&#xff0c;分享的精神是无限的。 1、魔法科高中的劣等生&#xff1a;国立魔法大学附属第一高校——通称“魔法科高校”&#xff0c;是由成绩优秀的“一科生”&#xff0c;和作为一科生替补的…

last_kmsg和ram console

相关文章Android 7.1使用脚本保存LOGCAT和KMSG日志到文件首先&#xff0c;在kernel里面通过printk吐log的时候会是下面的一个过程&#xff1a;printk会将信息格式化到kernel log buffer里面去。然后将这些格式化信息送到console去&#xff0c;在我们的系统里面有两个console&am…

字符串类

1.String类 常用方法&#xff1a; 参考&#xff1a;http://wenku.baidu.com/link?urltz-3Dpwj-JSJQdG6vSo0J1L1G9oJS4eQJjYgogieIzgjdNNLmj-U9EpWhOnVthz4egAKv0SNmLkqzNz2WsiZ2EmPGMu2UXhB6yy-E4yvMQ3 NB&#xff1a; 这里的”s1s2“是地址相等,而是s1.equals(s2)是内容相等…

github网页

GitHub主页创建仓库想必大家都有自己的Github账号吧&#xff0c;没有的可以到GitHub官网注册账号&#xff0c;注册完后&#xff0c;我们来下一步&#xff0c;在我们的GitHub上面右上角的New repository来创建一个仓库。 仓库名必须遵守相应格式&#xff1a;your_username.githu…

企业应该如何选型ERP?

企业应该如何选型ERP呢?!其实说起这个话题, 是源于我们公司所在的镇里,镇长带着两个企业的企业家,到我们公司指名让我给他们讲讲. 俗称:取经我是乐意的,因为做了这么久的顾问了,感觉不像是顾问了,倒成了传教士了. 总喜欢说上两句.然后把自已的观点或看法,希望传给别人,然后影…

有用的Copy-On-write,写时复制

写时复制和写时拷贝是一个意思写时复制是一种策略&#xff0c;并不是Linux独有的&#xff0c;如果你正在设计某个系统架构&#xff0c;也可以参考这种思想。写时复制的英文解释如下Copy-on-write (sometimes referred to as "COW") is an optimization strategy used…

lambda应用

def test(a, b, func):result func(a, b)print(result)test(10, 15, lambda x, y: x y) #codingutf-8 #python2需要加上codingutf-8def test(a, b, func):result func(a, b)return result #python2中的方式 #func_new input("请输入一个匿名函数:")#python3中的方…

51单片机学习

单片机学习 宗旨&#xff1a;技术的学习是有限的&#xff0c;分享的精神是无限的。 学习使用单片机就是理解单片机硬件结构&#xff0c;在汇编或C语言中学会各种功能的初始化设置&#xff0c;以及实现各种功能的程序编制。 第一步&#xff1a;数字I/O的使用 使用按钮输入信…

数据库操作,内外联查询,分组查询,嵌套查询,交叉查询,多表查询,语句小结...

为了大家更容易理解我举出的SQL语句&#xff0c;本文假定已经建立了一个学生成绩管理数据库&#xff0c;全文均以学生成绩的管理为例来描述。 1.在查询结果中显示列名&#xff1a; a.用as关键字&#xff1a;select name as 姓名 from students order by age b.直接表示&#x…