{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://jsonschema.net", "type": "object", "properties": { "c": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] } } }
{c: null}
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://jsonschema.net", "type": "object", "properties": { "c": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] } } }
{c: null}
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)