Update vor Clone
This commit is contained in:
@@ -26,6 +26,13 @@ namespace BlazorApp.Controller
|
||||
dbh.Get_Tabledata("Select * from AspNetRoles where id=" + ID.ToString(), false, true);
|
||||
return dbh.ConvertDataTable<AspNetRoles>(dbh.dsdaten.Tables[0]);
|
||||
}
|
||||
public static List<AspNetRoles> GetByName(string Name)
|
||||
{
|
||||
dbhelper dbh = new dbhelper();
|
||||
dbh.Get_Tabledata("Select * from AspNetRoles where name='"+Name+"'", false, true);
|
||||
return dbh.ConvertDataTable<AspNetRoles>(dbh.dsdaten.Tables[0]);
|
||||
}
|
||||
|
||||
|
||||
public static List<AspNetRoles> GetLast()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user