List of common words used when implementing common patterns
- Adapter - Match interfaces of different classes
- Analyzer
- Behavior
- Builder - Separates object construction from its representation
- Collector
- Command -
| DECLARE @fkSql nvarchar(max) = N''; | |
| DECLARE @dropSql nvarchar(max) = N''; | |
| DECLARE @nl nvarchar(10) = CHAR(13)+CHAR(10); | |
| ;WITH fk(fkName, fkTable) AS | |
| ( | |
| SELECT [name] as fkName, OBJECT_NAME(parent_object_id) as fkTable | |
| FROM sys.foreign_keys | |
| ) | |
| SELECT @fkSql += N'ALTER TABLE ' + fkTable + N' drop constraint ' + fkName + ';' + @nl FROM fk; |
| import Paper from '@mui/material/Paper'; | |
| import Table from '@mui/material/Table'; | |
| import TableBody from '@mui/material/TableBody'; | |
| import TableCell from '@mui/material/TableCell'; | |
| import TableContainer from '@mui/material/TableContainer'; | |
| import TableHead from '@mui/material/TableHead'; | |
| import TableRow from '@mui/material/TableRow'; | |
| import { | |
| useReactTable, | |
| getCoreRowModel, |
| namespace Botanicodes.Common.Entities | |
| { | |
| public interface IEntity | |
| { | |
| } | |
| public interface IEntity<TKey> : IEntity | |
| { | |
| TKey Id { get; set; } |
| using Microsoft.EntityFrameworkCore; | |
| using Midmark.RTLS.Common.Entities.Abstractions; | |
| using Midmark.RTLS.Common.Extensions; | |
| using Midmark.RTLS.Common.Guards; | |
| using System; | |
| using System.Linq; | |
| using System.Reflection; | |
| namespace Midmark.RTLS.Operations.Data.Extensions | |
| { |