Aklımda Kalası Kelimeler

* давайте работать вместе
* Zarf ve Mazruf, Zerafet(xHoyratlık) ile aynı kökten(za-ra-fe) gelir
* Bedesten
* Suç subuta ermiştir - Suç sabit olmuştur
NULLABLE etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
NULLABLE etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

10 Kasım 2015 Salı

JSON Schema da null olabilen boolean alan (nullable boolean property)

Şema:
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "id": "http://jsonschema.net",
  "type": "object",
  "properties": {
    "c": {
      "anyOf": [
        {
          "type": "boolean"
        },
        {
          "type": "null"
        }
      ]
    }
  }
}
{c: null}

11 Kasım 2010 Perşembe

Linq ile NULL alanların SUM ile toplanması

Püf nokta nullable olarak cast etmekte.

var puan = (from p in DAO.context.TblOrtalamaPuanlar
where p.M_RefTabloAdi.Equals("Videolar") && p.M_RefTabloPKId.Equals(this.M_VideoId)
select p.M_Puan).Sum(p => (int?)p)