Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Sum mit Where in einer GroupBy Abfrage

Empfohlene Antworten

Veröffentlicht

Hallo ich versuche gerade folgenden Code in meine Applikation einzubauen:



MeineDataContextdb = new MeineDataContext;


var pilotgroup = (from l in db.Lg

                                      join c in db.Catas on l.NUMBER equals c.Object

                                      where c.IdObject == "25"

                                      && (l.DATE >= time1 && l.DDATE <= time2)

                                      select l)

                                        .GroupBy(l => l.NUMBER)

                                        .Select(group => new

                                        {

...

//hier sind noch andere Anweisungen

...



TotalDuration = group.Where(lg => q.CreateType17().Contains(lg.CREATE)

&& lg.EN_TIME > 0)


.Sum(lg => lg.EN_TIME)
.... Hierbei schmeist das Programm aber immer einen Fehler. Und sagt ich versuche null in einen Int16 Wert einzusetzen der null nicht zulässt. Alle meine Spalten in der DB lassen aber Null zu (ausser PK) Wenn ich aber folgendes mache:

TotalDuration = group.Sum(lg => lg.EN_TIME)

dann geht es.

Was mache ich Falsch?

Archiv

Dieses Thema wurde archiviert und kann nicht mehr beantwortet werden.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.