-
Notifications
You must be signed in to change notification settings - Fork 684
Add ability to specify idbag (#415) #755
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
jeff-hagen
wants to merge
8
commits into
nhibernate:main
Choose a base branch
from
jeff-hagen:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
e584670
Add ability to specify idbag (closes #415)
a564b11
deep source fixes
7de06fd
cleanup
d905753
oops
28acdc8
make deepsource happy
90b7273
Refactor servicLocator to protected variable
845804f
PR Fixes
f4a6c76
Make tests better
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
using System; | ||
using FluentNHibernate.Mapping.Providers; | ||
using FluentNHibernate.MappingModel; | ||
using FluentNHibernate.MappingModel.Collections; | ||
using FluentNHibernate.MappingModel.Identity; | ||
|
||
namespace FluentNHibernate.Mapping; | ||
|
||
public class CollectionIdPart : ICollectionIdMappingProvider | ||
{ | ||
readonly Type entity; | ||
readonly AttributeStore attributes = new(); | ||
|
||
/// <summary> | ||
/// Specify the generator | ||
/// </summary> | ||
/// <example> | ||
/// .AsIdBag<int>(x => x.Column("Id").GeneratedBy.Identity()) | ||
/// </example> | ||
public IdentityGenerationStrategyBuilder<CollectionIdPart> GeneratedBy { get; } | ||
|
||
public CollectionIdPart(Type entityType, Type idColumnType) | ||
{ | ||
attributes.Set("Type", Layer.UserSupplied, new TypeReference(idColumnType)); | ||
entity = entityType; | ||
GeneratedBy = new IdentityGenerationStrategyBuilder<CollectionIdPart>(this, idColumnType, entityType); | ||
SetDefaultGenerator(idColumnType); | ||
} | ||
|
||
/// <summary> | ||
/// Specifies the id column length | ||
/// </summary> | ||
/// <param name="length">Column length</param> | ||
public CollectionIdPart Length(int length) | ||
{ | ||
attributes.Set("Length", Layer.UserSupplied, length); | ||
return this; | ||
} | ||
|
||
/// <summary> | ||
/// Specifies the column name for the collection id. | ||
/// </summary> | ||
/// <param name="idColumnName">Column name</param> | ||
public CollectionIdPart Column(string idColumnName) | ||
{ | ||
attributes.Set("Column", Layer.UserSupplied, idColumnName); | ||
return this; | ||
} | ||
|
||
void SetDefaultGenerator(Type idColumnType) | ||
{ | ||
var generatorMapping = new GeneratorMapping(); | ||
new GeneratorBuilder(generatorMapping, idColumnType, Layer.UserSupplied).SetDefault(); | ||
attributes.Set("Generator", Layer.Defaults, generatorMapping); | ||
} | ||
|
||
CollectionIdMapping ICollectionIdMappingProvider.GetCollectionIdMapping() | ||
{ | ||
var mapping = new CollectionIdMapping(attributes.Clone()) | ||
{ | ||
ContainingEntityType = entity | ||
}; | ||
|
||
mapping.Set(x => x.Column, Layer.Defaults, "Id"); | ||
if (GeneratedBy.IsDirty) | ||
mapping.Set(x => x.Generator, Layer.UserSupplied, GeneratedBy.GetGeneratorMapping()); | ||
|
||
return mapping; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
src/FluentNHibernate/Mapping/Providers/ICollectionIdMappingProvider.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
using FluentNHibernate.MappingModel.Collections; | ||
|
||
namespace FluentNHibernate.Mapping.Providers; | ||
|
||
public interface ICollectionIdMappingProvider | ||
{ | ||
CollectionIdMapping GetCollectionIdMapping(); | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,6 @@ public enum Collection | |
Bag, | ||
Map, | ||
List, | ||
Set | ||
Set, | ||
IdBag | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.