Pytanie : Sumujący Rola Rola W Obyczajowy Członkostwo Dostawca - Lepszy Sposób? C#, SQL, Wyrocznia, ASP.NET

I potrzebować lepszy sposób save rola rola w nasz obyczajowy mebership dostawca - rifgr teraz, tutaj być the stół:

ID (PK)
RoleID (FK Aspnet_Roles.ID)
ParentRoleID (FK aspnet_Roles.ID)

Currently, tutaj być the krok który używać rola (my dzwonić ten c-rola) inny rola (my dzwonić ten p-rola)

- Dostawać krok the aktualny rodzic rola the p-rola, krok the rodzic mateczny rola, krok the mateczny rodzic mateczny rola, i w ten sposób dalej i w ten sposób dalej, i stawiać the releventdata w dane stół (zarówno jak i the w ten sposób dla the c-rola.)

- Deleatur zbierać the wejście dla the c-rola z datatable datatable the c-rola parents

- Dodawać the stół my zbierać że my właśnie kasować, wraz z the nowy dane the mateczny role

I am tam  być mieć nadzieję mieć nadzieję tam  kto brać się do to przed, gdy I polubić lepszy sposób to, as well as znajdować lepszy sposób dla the dane dostęp warstwa funkcjonalność który I zawierać lepszy - funkcjonalność pracować, I właśnie chcieć szybki, mniej skomplikowany DAL, i jeżeli ewentualny inny opcja jeżeli dostępny - dzięki w postęp dla twój wiedza!
(1):
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
 Wezwanie

        jawny bool SetRoles (DataTable dtRoles, smyczkowy roleId)
        {
            DataTable dtDeleteRoles = GetParentRolesInRole (roleId);
            dtDeleteRoles.TableName = String.Format ("RolesInRoles");
            CreatePrimaryKey (dtDeleteRoles, "Id");
            dtRoles.TableName = String.Format ("RolesInRoles");
            bool rezultat = UpdateTable (dtRoles, dtDeleteRoles);
            powrotny rezultat;
        }

// Tutaj pod być wszystkie the funkcja używać w ten wezwanie - // 
// schudnięcie ten puszek wcale, lub znajdować lepszy sposób?

        jawny DataTable GetParentRolesInRole (smyczkowy roleId)
        {
            smyczkowy sqlCommand = (@ "
                WYBRANY RolesInRoles.RoleId, aspnet_Roles.RoleName, RolesInRoles.ParentRoleId 
                OD RolesInRoles 
                WEWNĘTRZNY ŁĄCZYĆ aspnet_Roles
	                NA ParentRoleId = aspnet_Roles.RoleId
                DOKĄD RolesInRoles.RoleId = "{(0)}"
                ");
            sqlCommand = sznurek. Format (sqlCommand, roleId);
            DbCommand dbCommand = _database.GetSqlStringCommand (sqlCommand);
            powrotny _database.ExecuteDataSet (dbCommand). Stół [(0)];
        }


        jawny kawitacyjny CreatePrimaryKey (DataTable dtbTable, smyczkowy strColumnName)
        {
            DataColumn [] dcCol = nowy DataColumn [(1)];
            dcCol [(0)] = dtbTable.Columns [strColumnName];
            dtbTable.PrimaryKey = dcCol;
        }


  jawny bool UpdateTable (DataTable dodawać, DataTable deleatur)
        {
            (DbConnection dbConn = _database.CreateConnection ())
            {
                dbConn.Open ();
                próba
                {
                    (DbTransaction dbTxn = dbConn.BeginTransaction ())
                    {
                        próba
                        {
                            jeżeli (dodawać. Rows.Count > (0))
                            {
                                UpdateInsertDataTable (dodawać, dbTxn);
                            }
                            jeżeli (deleatur. Rows.Count > (0))
                            {
                                dla (int i = (0); i <= deleatur. Rows.Count - (1); i++)
                                {
                                    deleatur. Rząd [i]. Deleatur ();
                                }
                                DeleteDataTable (deleatur, dbTxn);
                            }
                            dbTxn.Commit ();
                        }
                        chwyt
                        {
                            dbTxn.Rollback ();
                            powrotny fałszywy;
                        }
                    }
                }
                w końcu
                {
                    dbConn.Close ();
                }
            }
            powrót prawdziwy;
        }

  intymny int UpdateInsertDataTable (DataTable dtTable, DbTransaction txn)
        {
            smyczkowy strInsert = "WSZYWKA W" + dtTable.TableName + "(";
            smyczkowy strUpdate = "AKTUALIZACJA" + dtTable.TableName + "SET";

            dla (int i = (0); i <= dtTable.Columns.Count - (1); i++)
            {
                jeżeli (_database.DbProviderFactory.ToString (). Zawierać ("Wyrocznia"))
                {
                    strInsert = strInsert + dtTable.Columns [i] .ColumnName + ",";
                    strUpdate = strUpdate + dtTable.Columns [i] .ColumnName + "=" + _paramStart + dtTable.Columns [i] .ColumnName + ",";
                }
                inny
                {
                    strInsert = strInsert + "[" + dtTable.Columns [i] .ColumnName + "],";
                    strUpdate = strUpdate + "[" + dtTable.Columns [i] .ColumnName + "] =" + _paramStart + dtTable.Columns [i] .ColumnName + ",";
                }
            }

            strInsert = strInsert.Substring ((0), strInsert.Length - 1) + ") wartość (";
            dla (int i = (0); i <= dtTable.Columns.Count - (1); i++)
            {
                strInsert = strInsert + _paramStart + dtTable.Columns [i] .ColumnName + ",";
            }

            strInsert = strInsert.Substring ((0), strInsert.Length - 1) + ")";
            strUpdate = strUpdate.Substring ((0), strUpdate.Length - 1) + "DOKĄD";
            foreach (DataColumn kolumna w dtTable.PrimaryKey)
            {
                strUpdate = strUpdate + column.ColumnName + "=" + _paramStart + column.ColumnName + "I";
            }
            strUpdate = strUpdate.Substring ((0), strUpdate.Length - 5);

            DbCommand insertCommand = _database.GetSqlStringCommand (strInsert);
            DbCommand updateCommand = _database.GetSqlStringCommand (strUpdate);

            dla (int i = (0); i <= dtTable.Columns.Count - (1); i++)
            {
                DbType typ = GetDataType (dtTable.Columns [i] .DataType);
                _database.AddInParameter (insertCommand, dtTable.Columns [i] .ColumnName, typ, dtTable.Columns [i] .ColumnName, DataRowVersion.Current);
                _database.AddInParameter (updateCommand, dtTable.Columns [i] .ColumnName, typ, dtTable.Columns [i] .ColumnName, DataRowVersion.Current);
                jeżeli (! (typ == DbType.String | pisać na maszynie == DbType.AnsiString)) kontynuować;
                insertCommand.Parameters [_paramStart + dtTable.Columns [i] .ColumnName]. Rozmiar = dtTable.Columns [i] .MaxLength;
                updateCommand.Parameters [_paramStart + dtTable.Columns [i] .ColumnName]. Rozmiar = dtTable.Columns [i] .MaxLength;
            }
            GetIdsForTable (dtTable);

            powrotny UpdateDataSet (dtTable.Select ("", ""), insertCommand, updateCommand, null, txn, UpdateBehavior.Standard, (0)); //DataViewRowState.ModifiedCurrent | DataViewRowState.Added
        }

      intymny kawitacyjny GetIdsForTable (DataTable stół)
        {
            jeżeli (stół. Columns.Contains ("Id"))
            {
                jeżeli (stół. Kolumna ["Id"] .AutoIncrement == fałszywy)
                {
                    //For Table.ChildRelations powiązanie Jako DataRelation W table.ChildRelations 
                    // powiązanie. Gniazdować 
                    //Next 
                    int idEnd = GetLatestId (table.TableName); //GetIdRefs (table.TableName, rząd. Długość);
                    int id = idEnd + (1); //idEnd - rząd. Długość + (1);
                    foreach (DataRow rząd w stół. Rząd)
                    {
                        rząd ["Id"] = id;
                        id += (1);
                    }
                }
            }

        }


 intymny int UpdateDataSet (DataRow [] dataRows, DbCommand insertCommand, DbCommand updateCommand, DbCommand deleteCommand, DbTransaction txn, UpdateBehavior zachowanie, int updateBatchSize)
        {
            int rząd;
            (DbDataAdapter adaptator = _database.GetDataAdapter ())
            {
                jeżeli ((zachowanie == UpdateBehavior.Transactional) & txn == null)
                {
                    (DbConnection dbConn = _database.CreateConnection ())
                    {
                        dbConn.Open ();
                        próba
                        {
                            (DbTransaction dbTxn = dbConn.BeginTransaction ())
                            {
                                próba
                                {
                                    DoUpdateDataSet (adaptator, insertCommand, updateCommand, deleteCommand, dbTxn, zachowanie, updateBatchSize);
                                    rząd = adaptator. Aktualizacja (dataRows);
                                    dbTxn.Commit ();
                                }
                                chwyt
                                {
                                    dbTxn.Rollback ();
                                    rzut;
                                }
                            }
                        }
                        w końcu
                        {
                            dbConn.Close ();
                        }
                    }
                }
                inny
                {
                    DoUpdateDataSet (adaptator, insertCommand, updateCommand, deleteCommand, txn, zachowanie, updateBatchSize);
                    rząd = adaptator. Aktualizacja (dataRows);
                }
            }
            powrotny rząd;
        }

 intymny statyczny kawitacyjny DoUpdateDataSet (DbDataAdapter adaptator, DbCommand insertCommand, DbCommand updateCommand, DbCommand deleteCommand, DbTransaction txn, UpdateBehavior zachowanie, int updateBatchSize)
        {

            IDbDataAdapter explicitAdapter = adaptator;
            jeżeli (txn! = null)
            {
                jeżeli (insertCommand! = null)
                    PrepareCommand (insertCommand, txn);
                jeżeli (updateCommand! = null)
                    PrepareCommand (updateCommand, txn);
                jeżeli (deleteCommand! = null)
                    PrepareCommand (deleteCommand, txn);
            }
            jeżeli (insertCommand! = null)
            {
                insertCommand.CommandTimeout = 120;
                explicitAdapter.InsertCommand = insertCommand;
            }
            jeżeli (updateCommand! = null)
            {
                updateCommand.CommandTimeout = 120;
                explicitAdapter.UpdateCommand = updateCommand;
            }
            jeżeli (deleteCommand! = null)
            {
                deleteCommand.CommandTimeout = 120;
                explicitAdapter.DeleteCommand = deleteCommand;
            }

            jeżeli (updateBatchSize == 1) powrót;
            adapter.UpdateBatchSize = updateBatchSize;
            jeżeli (insertCommand! = null)
                adapter.InsertCommand.UpdatedRowSource = UpdateRowSource.None;
            jeżeli (updateCommand! = null)
                adapter.UpdateCommand.UpdatedRowSource = UpdateRowSource.None;
            jeżeli (deleteCommand! = null)
                adapter.DeleteCommand.UpdatedRowSource = UpdateRowSource.None;
        }

        intymny statyczny kawitacyjny PrepareCommand (DbCommand rozkaz, DbTransaction txn)
        {
            rozkaz. Transakcja = txn;
            rozkaz. Związek = txn. Związek;
            rozkaz. Przygotowywać ();
        }

   intymny int DeleteDataTable (DataTable dtTable, DbTransaction txn)
        {
            smyczkowy strDelete = "deleatur od" + dtTable.TableName + "dokąd";
            foreach (DataColumn kolumna w dtTable.PrimaryKey)
            {
                strDelete = strDelete + column.ColumnName + "=" + _paramStart + column.ColumnName + "i";
            }
            strDelete = strDelete.Substring ((0), strDelete.Length - 5);
            DbCommand deleteCommand = _database.GetSqlStringCommand (strDelete);
            //For DtTable.Rows rząd Jako Data.DataRow W dtTable.Rows 
            foreach (DataColumn kolumna w dtTable.PrimaryKey)
            {
                //db.AddInParameter (deleteCommand, column.ColumnName, GetDataType (column.DataType), rząd. Rzecz (column.ColumnName, DataRowVersion.Original)) 
                _database.AddInParameter (deleteCommand, column.ColumnName, GetDataType (column.DataType), column.ColumnName, DataRowVersion.Current);
            }
            powrotny UpdateDataSet (dtTable.Select ("", "", DataViewRowState.Deleted), null, null, deleteCommand, txn, UpdateBehavior.Standard, (0));
        }

Odpowiedź : Sumujący Rola Rola W Obyczajowy Członkostwo Dostawca - Lepszy Sposób? C#, SQL, Wyrocznia, ASP.NET

Kawałek być kawałek, ty móc tylko the przeniesienie szybki duży drymba do/z the magazyn, i szybki składowy szyk.  

Zdjęcie być dalej - the - latać, ty móc nawet.  Wtedy ty móc wsparcie na the zdjęcie z the VM wciąż.  Znowu, WYSTRZEGAĆ SIĘ występ degradacja na twój składowy szyk.

Ty móc całkowicie the zamknięcie, eksport i wyzdrowienie.  Ty móc na the VMs - być dopóki twój być dobry i dobry testowany.

Prawie everything ty chcieć być już w the 5.6 uwolnienie XenServer.  Także sprawdzać także StorageLink, che przychodzić z XS Przedsięwzięcie, i dalej uwydatniać te funkcja.
Inne rozwiązania  
 
programming4us programming4us