Posts by devgirl • 133 points
7 posts
- 
		1 votes1 answer617 viewsA: Grant permission to a new user in SQL Server 2014You need to create a user to give db_datareader permission. This is because the login refers to the access in the SQL instance. Users is at the object level of the database. And as reading refers to… 
- 
		1 votes1 answer1180 viewsA: Cannot convert ImplicitlyI don’t quite understand why Tclient, but come on: _context.Clientes.Add waits to add a type item Applicationclient. And its class of entity Applicationclient does not inherit from Tclient. So it is… 
- 
		1 votes1 answer209 viewsA: Copy by Javascript and HTML TagDante, you’re setting the variable to "text" and calling her on selectNode as "table". In addition, the method getelementsbytagname will return an Htmlcollection, so you will need to iterate over… 
- 
		1 votes1 answer56 viewsA: C# - EF Core doubts to create relational modelProbably somewhere you should be explicitly setting the value of some primary key column. As you set your primary keys to Identity, they will be incremented automatically, and will throw an… 
- 
		-3 votes1 answer314 viewsA: I want to create a variable with the dynamic name with javascriptSince you cannot use array: for(i=0;i<5;i++){ window["variavel"+i] = i; console.log(window["variavel"+i]) }… 
- 
		2 votes1 answer308 viewsA: Help with Datatable Server-sideThe next button doesn’t work, and the record counter doesn’t work. How do I tidy up? You need to return all the items that the dataTables plugin expects. To documentation plugin details the expected… 
- 
		1 votes4 answers4102 views