Skip to content

Instantly share code, notes, and snippets.

$(function () {
function TimerGetPesos() {
$.ajax({
url: new Util().getBaseURL() + 'monitoramento/GetPesos',
success: function (dadosPesos) {
localStorage.clear();
localStorage.setItem("dadosPesos", JSON.stringify(dadosPesos));
pesos = dadosPesos;
},
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ExemploMedia
{
class Program
{
List lista = new List();
SqlDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
MinhaClasse classe = new MinhaClasse();
classe.propriedade = reader["propriedade"].ToString();
classe.total = Convert.Toint32(reader["total"]);
lista.Add(classe);
}
private List PopulaMinhaLista(List lista)
{
MinhaClasse minha = new MinhaClasse();
minha.propriedade = “valor em string aê";
minha.total = 666;
lista.Add(minha);
return lista;
}
private void PrintRows(DataSet dataSet)
{
// For each table in the DataSet, print the row values.
foreach(DataTable table in dataSet.Tables)
{
foreach(DataRow row in table.Rows)
{
foreach (DataColumn column in table.Columns)
{
Console.WriteLine(row[column]);
@MayogaX
MayogaX / ef.cs
Created September 21, 2015 20:39
Database.DefaultConnectionFactory = new SqlCeConnectionFactory("System.Data.SqlServerCe.4.0");
$ git config --global user.name "MayogaX"
$ git config --global user.email mayumisatox@gmail.com
INSERT INTO [__MigrationHistory]
([MigrationId], [CreatedOn], [Model], [ProductVersion])
VALUES ('201202161546124_initial', '2012-02-16T15:55:56.252Z',
[big-ass hash you don’t need to see], '4.3.0')
@MayogaX
MayogaX / uso.cs
Created September 21, 2015 19:55
using (JogadoresContext jc = new JogadoresContext())
{
Goleiro goleiro = new Goleiro();
goleiro.Nome = "Rogerio Ceni";
goleiro.GolsDefendidos = 9000;
jc.Goleiros.Add(goleiro);
Artilheiro artilheiro = new Artilheiro();
artilheiro.Nome = "Pele";
artilheiro.GolsMarcados = 1000;
public class JogadoresContext:DbContext
{
public DbSet Artilheiros { get; set; }
public DbSet Goleiros { get; set; }
public JogadoresContext()
{
Database.SetInitializer(new DropCreateDatabaseAlways());
}