Skip to content

Best Practices

kccarter76 edited this page Jun 29, 2020 · 4 revisions
  • Static Properties and Fields, if the value can change during runtime prefix the declaration with the ThreadStaticAttribute.
  • When SubSonic.Linq is being used, if you need to reference anything in the System.Linq namespace setup an alias, I.E.:
    • using SysLinq = System.Linq;
    • SysLinq.IQueryable

Clone this wiki locally