示例#1
0
        private static CustomMappingSource New(Type rowType, string tableName)
        {
            CustomMappingSource sharedMappingSource = new CustomMappingSource();

            sharedMappingSource.SetCustomTableName(rowType, tableName);
            return(sharedMappingSource);
        }
示例#2
0
 private SqlEventStoreDataContext(CustomMappingSource sharedMappingSource, string fileOrServerOrConnection)
     : base(fileOrServerOrConnection, sharedMappingSource)
 {
 }
示例#3
0
 private SqlEventStoreDataContext(CustomMappingSource sharedMappingSource, System.Data.IDbConnection connection)
     : base(connection, sharedMappingSource)
 {
 }