Skip to content

Commit

Permalink
Add SqlBind-CSharp
Browse files Browse the repository at this point in the history
  • Loading branch information
maroontress-tomohisa committed May 2, 2023
1 parent 9047e8e commit 8c4cd41
Show file tree
Hide file tree
Showing 41 changed files with 9,211 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,166 @@
<!doctype html>
<html>
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9TQ6JWBKEK">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-9TQ6JWBKEK');
</script>
<meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AutoIncrementAttribute Class | API Reference | SqlBind Project</title>
<link rel="stylesheet" href="bulldoc.css">
<script src="highlight.pack.js">
</script>
<script>
hljs.initHighlightingOnLoad();
</script>
</head>
<body>
<div class="mainContainer uhf-container has-top-padding has-default-focus" data-bi-name="body">
<section>
<main class="content">
<h1><span class="lang-csharp">Auto<wbr>Increment<wbr>Attribute</span> Class</h1>
<div class="metadata">
<dl class="attributeList">
<dt>
Namespace:
<dd>
<span class="lang-csharp"><a class="xref" href="Maroontress.SqlBind.html" data-linktype="relative-path">Maroontress.Sql<wbr>Bind</a></span>
</dd>
</dt>
</dl>
<dl class="attributeList">
<dt>
Assembly:
<dd>
<span class="lang-csharp">Sql<wbr>Bind.dll</span>
</dd>
</dt>
</dl>
</div>
<div class="summaryHolder">
<div class="summary clearFix">
<p>An attribute that qualifies any parameter in the constructor, making the
column associated with the parameter an <code>AUTOINCREMENT</code> field.</p>
</div>
</div>
<div class="codeHeader" data-bi-name="code-header">
<span class="language">C#</span><button class="action" data-bi-name="copy"><span class="docon docon-edit-copy" role="presentation"></span><span>Copy</span></button>
</div>
<pre class="wrap"><code class="nohighlight">[<span class="hljs-title">AttributeUsage</span>(<span class="hljs-title">System.AttributeTargets.Parameter</span>, Inherited = <span class="hljs-keyword">false</span>, AllowMultiple = <span class="hljs-keyword">false</span>)]<br><span class="hljs-keyword">public</span> <span class="hljs-keyword">sealed</span> <span class="hljs-keyword">class</span> <span class="hljs-title">AutoIncrementAttribute</span> : <span class="hljs-title">Attribute</span></code></pre>
<dl class="attributeList stack">
<dt>
Inheritance
</dt>
<dd>
<div class="pdlHolder">
<div class="pdl">
<span class="lang-csharp"><a class="xref" href="https://docs.microsoft.com/en-us/dotnet/api/system.object?view=netcore-3.0" data-linktype="absolute-path">object</a></span>
</div>
<div class="pdl">
<span class="lang-csharp"><a class="xref" href="https://docs.microsoft.com/en-us/dotnet/api/system.attribute?view=netcore-3.0" data-linktype="absolute-path">Attribute</a></span>
</div>
<span class="lang-csharp">Auto<wbr>Increment<wbr>Attribute</span>
</div>
</dd>
</dl>
<dl class="attributeList stack">
<dt>
Attributes
</dt>
<dd>
<div class="cdlHolder">
<span class="cdl"><span class="lang-csharp"><a class="xref" href="https://docs.microsoft.com/en-us/dotnet/api/system.attributeusageattribute?view=netcore-3.0" data-linktype="absolute-path">Attribute<wbr>Usage<wbr>Attribute</a></span></span>
</div>
</dd>
</dl>
<h2 id="remarks" class="heading-with-anchor">Remarks</h2>
<p>This attribute must be specified together with the <a href="Maroontress.SqlBind.PrimaryKeyAttribute.html">PrimaryKeyAttribute</a>.</p>
<p>See: <a href="https://www.sqlite.org/autoinc.html">SQLite
Autoincrement</a>.</p>
<h2 id="properties" class="heading-with-anchor">Properties</h2>
<div class="table-scroll-wrapper">
<table class="nameValue">
<tbody>
<tr>
<td>
<a href="https://docs.microsoft.com/en-us/dotnet/api/system.attribute.typeid?view=netcore-3.0">TypeId</a>
</td>
<td>
(Inherited from <a class="xref" href="https://docs.microsoft.com/en-us/dotnet/api/system.attribute?view=netcore-3.0" data-linktype="absolute-path">Attribute</a>)
</td>
</tr>
</tbody>
</table>
</div>
<h2 id="methods" class="heading-with-anchor">Methods</h2>
<div class="table-scroll-wrapper">
<table class="nameValue">
<tbody>
<tr>
<td>
<a href="https://docs.microsoft.com/en-us/dotnet/api/system.attribute.equals?view=netcore-3.0#System_Attribute_Equals_System_Object_">Equals(object)</a>
</td>
<td>
(Inherited from <a class="xref" href="https://docs.microsoft.com/en-us/dotnet/api/system.attribute?view=netcore-3.0" data-linktype="absolute-path">Attribute</a>)
</td>
</tr>
<tr>
<td>
<a href="https://docs.microsoft.com/en-us/dotnet/api/system.attribute.gethashcode?view=netcore-3.0">GetHashCode()</a>
</td>
<td>
(Inherited from <a class="xref" href="https://docs.microsoft.com/en-us/dotnet/api/system.attribute?view=netcore-3.0" data-linktype="absolute-path">Attribute</a>)
</td>
</tr>
<tr>
<td>
<a href="https://docs.microsoft.com/en-us/dotnet/api/system.attribute.isdefaultattribute?view=netcore-3.0">IsDefaultAttribute()</a>
</td>
<td>
(Inherited from <a class="xref" href="https://docs.microsoft.com/en-us/dotnet/api/system.attribute?view=netcore-3.0" data-linktype="absolute-path">Attribute</a>)
</td>
</tr>
<tr>
<td>
<a href="https://docs.microsoft.com/en-us/dotnet/api/system.attribute.match?view=netcore-3.0#System_Attribute_Match_System_Object_">Match(object)</a>
</td>
<td>
(Inherited from <a class="xref" href="https://docs.microsoft.com/en-us/dotnet/api/system.attribute?view=netcore-3.0" data-linktype="absolute-path">Attribute</a>)
</td>
</tr>
<tr>
<td>
<a href="https://docs.microsoft.com/en-us/dotnet/api/system.object.gettype?view=netcore-3.0">GetType()</a>
</td>
<td>
(Inherited from <a class="xref" href="https://docs.microsoft.com/en-us/dotnet/api/system.object?view=netcore-3.0" data-linktype="absolute-path">object</a>)
</td>
</tr>
<tr>
<td>
<a href="https://docs.microsoft.com/en-us/dotnet/api/system.object.memberwiseclone?view=netcore-3.0">MemberwiseClone()</a>
</td>
<td>
(Inherited from <a class="xref" href="https://docs.microsoft.com/en-us/dotnet/api/system.object?view=netcore-3.0" data-linktype="absolute-path">object</a>)
</td>
</tr>
<tr>
<td>
<a href="https://docs.microsoft.com/en-us/dotnet/api/system.object.tostring?view=netcore-3.0">ToString()</a>
</td>
<td>
(Inherited from <a class="xref" href="https://docs.microsoft.com/en-us/dotnet/api/system.object?view=netcore-3.0" data-linktype="absolute-path">object</a>)
</td>
</tr>
</tbody>
</table>
</div>
</main>
</section>
</div>
</body>
</html>
Loading

0 comments on commit 8c4cd41

Please sign in to comment.