{"id":22800976,"url":"https://github.com/dailydevops/sequentialguid","last_synced_at":"2025-08-10T02:31:46.968Z","repository":{"id":231090015,"uuid":"780880286","full_name":"dailydevops/sequentialguid","owner":"dailydevops","description":"Simple and high-performance solution for creating sequential GUIDs. Does not fulfill the security requirements like GUIDs.","archived":false,"fork":false,"pushed_at":"2024-11-23T20:43:51.000Z","size":139,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2024-11-23T21:26:48.782Z","etag":null,"topics":["dotnet","sequential-guids"],"latest_commit_sha":null,"homepage":"https://dailydevops.net","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dailydevops.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["dailydevops"]}},"created_at":"2024-04-02T10:35:39.000Z","updated_at":"2024-11-23T20:43:55.000Z","dependencies_parsed_at":"2024-04-12T08:58:38.013Z","dependency_job_id":"06e0c576-38fe-4cb9-acba-4de2484f2828","html_url":"https://github.com/dailydevops/sequentialguid","commit_stats":null,"previous_names":["dailydevops/sequentialguid"],"tags_count":8,"template":false,"template_full_name":"dailydevops/dotnet-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dailydevops%2Fsequentialguid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dailydevops%2Fsequentialguid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dailydevops%2Fsequentialguid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dailydevops%2Fsequentialguid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dailydevops","download_url":"https://codeload.github.com/dailydevops/sequentialguid/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229352429,"owners_count":18059492,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dotnet","sequential-guids"],"created_at":"2024-12-12T08:08:34.104Z","updated_at":"2024-12-12T08:08:34.859Z","avatar_url":"https://github.com/dailydevops.png","language":"C#","readme":"# NetEvolve.SequentialGuid\n\n[![Nuget](https://img.shields.io/nuget/v/NetEvolve.SequentialGuid?logo=nuget)](https://www.nuget.org/packages/NetEvolve.SequentialGuid/)\n[![Nuget](https://img.shields.io/nuget/dt/NetEvolve.SequentialGuid?logo=nuget)](https://www.nuget.org/packages/NetEvolve.SequentialGuid/)\n\n\nA .NET library to generate sequential GUIDs, similar to SQL Server's `newsequentialid()`.\nIt's a drop-in replacement for `System.Guid.NewGuid()`, focusing on performance and low allocation.\n\n\u003e [!CAUTION]\n\u003e The downside is that it's not as unique as `System.Guid.NewGuid()` and crypotographically insecure.\n\u003e So be sure to understand the trade-offs before using it.\n\n## Features\nWith the `SequentialGuidType` enum, you can choose between 3 different types of sequential GUIDs:\n- `AsBinary`\u003cbr/\u003eThe sequential part is at the beginning of the GUID, similar to Oracle's `SYS_GUID()`.\n- `AsString` (Default)\u003cbr/\u003eThe sequential part is at the beginning of the GUID.\n- `AtEnd`\u003cbr/\u003eThe sequential part is at the end of the GUID, similar to SQL Server's `newsequentialid()`.\n\n## Installation\n\n```pwsh\ndotnet add package NetEvolve.SequentialGuid\n```\n\n## Usage\n\n```csharp\nusing NetEvolve.SequentialGuid;\n\nGuid guid = SequentialGuidFactory.NewGuid(); // Default is SequentialGuidType.AsString\n// or\nGuid guid = SequentialGuidFactory.NewGuid(SequentialGuidType.AsBinary);\n```","funding_links":["https://github.com/sponsors/dailydevops"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdailydevops%2Fsequentialguid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdailydevops%2Fsequentialguid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdailydevops%2Fsequentialguid/lists"}